Skip to content
Open

Dev #131

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
46ee400
Added override for typescript to work
TaylorBrown96 Oct 20, 2025
1849fb6
Fix AssignReviewer local storage handling and remove unused loader
TaylorBrown96 Oct 20, 2025
21c604f
changed the base url
TaylorBrown96 Oct 20, 2025
09191cd
Merge pull request #1 from expertiza/main
cammyj1122 Oct 24, 2025
f3e2983
Add files via upload
TaylorBrown96 Oct 24, 2025
ccf68fa
Add files via upload
TaylorBrown96 Oct 24, 2025
03bc483
Merge pull request #2 from cammyj1122/dev
cammyj1122 Oct 24, 2025
940a094
completed create teams page
Oct 24, 2025
3768eb0
Finished merge. Update includes my assign reviewer tests and ananya's…
cammyj1122 Oct 24, 2025
62a6a59
Merge pull request #3 from cammyj1122/dev
cammyj1122 Oct 24, 2025
0c64434
added edits to create teams page
Oct 28, 2025
024967e
Added tests to check the results of the assign revieweres table. Star…
cammyj1122 Oct 28, 2025
7b09665
Merge branch 'dev' of github.com:cammyj1122/E2556-create-teams-assign…
cammyj1122 Oct 28, 2025
99f1cc1
Merge pull request #4 from cammyj1122/dev
cammyj1122 Oct 28, 2025
d814584
Added most test for the create teams page, and added hooks in the Cre…
cammyj1122 Oct 28, 2025
98aa19f
Merge branch 'main' of github.com:cammyj1122/E2556-create-teams-assig…
cammyj1122 Oct 28, 2025
6c169ee
Finished Testing for CreateTeams.tsx and removed som e comments from …
cammyj1122 Oct 28, 2025
3e5d80e
made final UI updates to create teams
Oct 29, 2025
f9fa9c5
Add files via upload
TaylorBrown96 Oct 29, 2025
e9d0721
Add files via upload
TaylorBrown96 Oct 29, 2025
9c9ed71
Moved Response Mapping to its own folder
cammyj1122 Oct 29, 2025
4157777
Merge pull request #5 from cammyj1122/dev
ananyarrao330 Oct 29, 2025
84b3909
Fixed Create Teams and Tests
cammyj1122 Oct 29, 2025
94ba0cd
Merge pull request #16 from cammyj1122/dev
ananyarrao330 Oct 29, 2025
89c70d9
Merged expertiza frontend main into our repo
cammyj1122 Nov 24, 2025
4acc556
Merge pull request #19 from cammyj1122/merge-expertiza-main
ananyarrao330 Nov 24, 2025
e2a7857
added import modal functionality and tried testing it with create teams
Dec 1, 2025
378235f
Merge branch 'main' of github.com:cammyj1122/E2556-create-teams-assig…
cammyj1122 Dec 1, 2025
2ac5302
Made import modal use the api to fetch data for the import index rout…
cammyj1122 Dec 1, 2025
af683cb
Updated import modal so that the import button can call the import co…
cammyj1122 Dec 1, 2025
2f16744
Added external fields, moved the header toggle and made it hide the c…
cammyj1122 Dec 2, 2025
8297410
added export modal with dummy data
Dec 2, 2025
52d5510
added import modal frontend tests
Dec 2, 2025
45afab9
updated import modal tests to reflect recent changes
Dec 2, 2025
8a6e604
feat(import-modal): improve tooltip formatting with multiline, human-…
TaylorBrown96 Dec 2, 2025
e382eb6
Updated export modal to be able to query for index data.
cammyj1122 Dec 2, 2025
825cf97
Merge remote-tracking branch 'origin/dev' into dev
cammyj1122 Dec 2, 2025
f277f37
Added import to the user page, made sure it works fully.
cammyj1122 Dec 3, 2025
09e8263
Got export frontend mostly fully working. Aded hover info fields and …
cammyj1122 Dec 3, 2025
7d39e80
Added download and export controller access to export modal.
cammyj1122 Dec 3, 2025
09ebf98
Fixed import not liking files with headers inside.
cammyj1122 Dec 3, 2025
0978848
Fixed arrows in export modal
cammyj1122 Dec 3, 2025
18be384
Added duplicate actions to the frontend
cammyj1122 Dec 3, 2025
4d205ce
Added small fix for export modal loading and exporting.
cammyj1122 Dec 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest"
"test": "vitest --config vitest.config.ts"
},
"eslintConfig": {
"extends": [
Expand Down
7 changes: 7 additions & 0 deletions setUp.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// src/setupTests.ts
import { vi } from "vitest";
import "@testing-library/jest-dom";

// Make Vitest's `vi` available as global `jest` so existing Jest-style tests work
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(globalThis as any).jest = vi;
Loading