-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(UpdatePassword):User is able to update password
- Loading branch information
1 parent
c3ce05a
commit 93eb23d
Showing
23 changed files
with
3,141 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
import type { Config } from 'jest'; | ||
import nextJest from 'next/jest.js'; | ||
const createJestConfig = nextJest({ | ||
dir: './' | ||
dir: './', | ||
}); | ||
const config: Config = { | ||
coverageProvider: 'v8', | ||
testEnvironment: 'jsdom', | ||
collectCoverage: true, | ||
coverageDirectory: 'coverage', | ||
collectCoverageFrom: ['src/**'], | ||
coveragePathIgnorePatterns: ['src/components/',], | ||
coverageReporters: [ | ||
"json-summary", | ||
"text", | ||
"lcov" | ||
] | ||
coveragePathIgnorePatterns: ['src/components/'], | ||
coverageReporters: ['json-summary', 'text', 'lcov'], | ||
preset: 'ts-jest', | ||
}; | ||
|
||
export default createJestConfig(config); | ||
export default createJestConfig(config); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import '@testing-library/jest-dom/extend-expect'; | ||
// import 'whatwg-fetch'; | ||
// import { server } from './mocks/server'; | ||
|
||
// beforeAll(() => { | ||
// server.listen(); | ||
// }); | ||
|
||
// afterEach(() => { | ||
// server.resetHandlers(); | ||
// }); | ||
|
||
// afterAll(() => { | ||
// server.close(); | ||
// }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.