-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump dependencies and fix errors/warnings
- Loading branch information
1 parent
51a01d1
commit 0cfe4d7
Showing
18 changed files
with
4,971 additions
and
4,566 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 type { Config } from 'jest'; | ||
|
||
// eslint-disable-next-line import/no-relative-packages | ||
import easCliConfig from './packages/eas-cli/jest.config'; | ||
// eslint-disable-next-line import/no-relative-packages | ||
import easJsonConfig from './packages/eas-json/jest.config'; | ||
|
||
const config: Config = { | ||
projects: [easCliConfig, easJsonConfig], | ||
testPathIgnorePatterns: ['.*'], | ||
watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'], | ||
collectCoverageFrom: ['<rootDir>/src/**/*.{ts,tsx,js,jsx}'], | ||
}; | ||
|
||
export default config; |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
import type { Config } from 'jest'; | ||
|
||
const config: Config = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
testRegex: '/__tests__/.*(test|spec)\\.[jt]sx?$', | ||
}; | ||
|
||
export default 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"version": "6.0.0", | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json" | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
import type { Config } from 'jest'; | ||
|
||
// eslint-disable-next-line import/no-relative-packages | ||
import baseConfig from '../../jest/jest.config'; | ||
|
||
const config: Config = { | ||
...baseConfig, | ||
rootDir: __dirname, | ||
roots: ['src', '__mocks__'], | ||
globalSetup: './jest/global-setup.ts', | ||
setupFilesAfterEnv: ['./jest/setup-after-env.ts'], | ||
}; | ||
|
||
export default config; |
Oops, something went wrong.