Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cb2-10920): Angular 16 to 17 #1408

Merged
merged 15 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
feat(cb2-10920): fix unit test which broke when resolving merge confl…
…icts
  • Loading branch information
pbardy2000 committed Feb 23, 2024
commit 2edc93f33a93b25ef52933dbf9037c1a72bde988
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"test:ci": "jest --ci --runInBand --watchAll=false --reporters=default",
"mock-api": "npx ts-node ./mock-api/mock-api-server.ts",
"prepare": "husky install && ts-patch install -s",
"postinstall": "ngcc",
"e2e": "npm run config && cypress run",
"e2e:open": "npm run config && cypress open",
"e2e:parallel": "cypress-parallel -s e2e -t 3 -d cypress/e2e",
Expand Down
11 changes: 11 additions & 0 deletions src/mocks/test-type.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,16 @@ export const createMockTestType = (params: Partial<TestType> = {}): TestType =>
},
customDefects: [],
additionalNotesRecorded: '',
requiredStandards: [{
sectionNumber: 'string',
sectionDescription: 'string',
rsNumber: 1,
requiredStandard: 'string',
refCalculation: 'string',
additionalInfo: false,
inspectionTypes: ['basic'],
prs: false,
additionalNotes: 'string',
}],
...params,
});
Loading