-
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(elasticsearch): release support of v8 and drop support of v7 (#104)
BREAKING CHANGE: Support elasticsearch v8 and remove support of v7
- Loading branch information
Showing
3 changed files
with
13 additions
and
5 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,10 +1,14 @@ | ||
/* eslint-disable import/no-relative-packages */ | ||
import type { Config } from '@jest/types'; | ||
|
||
// eslint-disable-next-line import/no-relative-packages | ||
import jestConfig from '../../jest.config'; | ||
|
||
export default { | ||
const config: Config.InitialOptions = { | ||
...jestConfig, | ||
collectCoverageFrom: ['<rootDir>/src/**/*.ts'], | ||
testMatch: ['<rootDir>/test/**/*.test.ts'], | ||
testTimeout: 10_000, | ||
maxWorkers: 1, | ||
}; | ||
|
||
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