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

Prepare OSS unit tests for jest-circus #82280

Closed
Closed
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c3e8026
Use jest-circus in OSS
patrykkopycinski Nov 2, 2020
7d6a6b2
cleanup done
patrykkopycinski Nov 2, 2020
6b73115
done
patrykkopycinski Nov 2, 2020
9cf98f2
done
patrykkopycinski Nov 2, 2020
99145d4
window
patrykkopycinski Nov 2, 2020
150916f
Merge branch 'master' of github.com:elastic/kibana into chore/jest-ci…
patrykkopycinski Nov 6, 2020
efe5ebd
Merge branch 'master' of github.com:elastic/kibana into feat/timeline…
patrykkopycinski Nov 6, 2020
3d232b9
Update saved_objects_service.test.ts
patrykkopycinski Nov 6, 2020
cf932b8
fix lint
patrykkopycinski Nov 7, 2020
a7df3f5
cleanup
patrykkopycinski Nov 7, 2020
0a7b433
increase timeout
patrykkopycinski Nov 7, 2020
91df75a
timeout
patrykkopycinski Nov 7, 2020
a8bae2b
bump jest
patrykkopycinski Nov 8, 2020
551d1ab
Merge branch 'master' of github.com:elastic/kibana into chore/jest-ci…
patrykkopycinski Nov 12, 2020
016ad9a
dist
patrykkopycinski Nov 12, 2020
f704ade
deps
patrykkopycinski Nov 12, 2020
1141f23
Merge remote-tracking branch 'upstream/master' into chore/jest-circus…
Nov 14, 2020
3a0965c
Merge pull request #2 from tylersmalley/chore/jest-circus-oss_cr
patrykkopycinski Nov 14, 2020
ab91378
Merge branch 'master' of github.com:elastic/kibana into chore/jest-ci…
patrykkopycinski Nov 14, 2020
994eaf2
Fixes integration tests
Nov 14, 2020
096e844
Merge branch 'master' into chore/jest-circus-oss
kibanamachine Nov 14, 2020
a63a0a9
observables to promises
patrykkopycinski Nov 16, 2020
a8fb412
refactor async observables tests to promises
patrykkopycinski Nov 16, 2020
15c3b7e
lint
patrykkopycinski Nov 16, 2020
d68dfdf
Merge branch 'master' into chore/jest-circus-oss
kibanamachine Nov 17, 2020
b323f7d
Merge branch 'master' of github.com:elastic/kibana into chore/jest-ci…
patrykkopycinski Nov 24, 2020
f4971a1
Update integration.test.js
patrykkopycinski Nov 25, 2020
d63d36f
Merge branch 'master' of github.com:elastic/kibana into chore/jest-ci…
patrykkopycinski Nov 27, 2020
24a2134
use promise
patrykkopycinski Nov 27, 2020
5ea7ff3
Merge branch 'master' into chore/jest-circus-oss
kibanamachine Nov 30, 2020
2609644
Merge branch 'master' into chore/jest-circus-oss
patrykkopycinski Dec 1, 2020
dfc9fa7
Merge remote-tracking branch 'upstream/master' into chore/jest-circus…
Dec 3, 2020
266dc8e
Updates for multi-project runner
Dec 3, 2020
6892d82
Merge branch 'master' into chore/jest-circus-oss
kibanamachine Dec 5, 2020
23a8433
Merge branch 'master' of github.com:elastic/kibana into chore/jest-ci…
patrykkopycinski Dec 6, 2020
225cd7e
PR comments
patrykkopycinski Dec 6, 2020
42a662d
Merge branch 'master' into chore/jest-circus-oss
kibanamachine Dec 9, 2020
f509e42
Merge branch 'master' into chore/jest-circus-oss
kibanamachine Dec 20, 2020
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
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
"@elastic/ui-ace": "0.2.3",
"@hapi/hapi": "^18.4.1",
"@istanbuljs/schema": "^0.1.2",
"@jest/reporters": "^26.5.2",
"@jest/reporters": "^26.6.2",
"@kbn/babel-code-parser": "link:packages/kbn-babel-code-parser",
"@kbn/babel-preset": "link:packages/kbn-babel-preset",
"@kbn/dev-utils": "link:packages/kbn-dev-utils",
Expand Down Expand Up @@ -585,7 +585,7 @@
"autoprefixer": "^9.7.4",
"axe-core": "^4.0.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.3.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^6.0.0",
Expand Down Expand Up @@ -693,15 +693,15 @@
"is-glob": "^4.0.1",
"is-path-inside": "^3.0.2",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^26.4.2",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.2.0",
"jest-circus": "^26.4.2",
"jest-cli": "^26.4.2",
"jest-diff": "^26.4.2",
"jest-circus": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-diff": "^26.6.2",
"jest-environment-jsdom-thirteen": "^1.0.1",
"jest-raw-loader": "^1.0.1",
"jest-silent-reporter": "^0.2.1",
"jest-snapshot": "^26.4.2",
"jest-snapshot": "^26.6.2",
"jest-specific-snapshot": "2.0.0",
"jest-styled-components": "^7.0.2",
"jest-when": "^2.7.2",
Expand Down
Loading