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

[Uptime] Run Sample uptime tests using @elastic/synthetics #112128

Merged
merged 29 commits into from
Sep 30, 2021
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
12a8125
Run sample uptime tests using @elastic/synthetics
shahzad31 Sep 15, 2021
9ceb60d
Merge branch 'master' into playwright-ftr-e2e
kibanamachine Sep 16, 2021
ed1f80f
build kbn/pm
shahzad31 Sep 16, 2021
78b8d18
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 21, 2021
d3b805b
test ci
shahzad31 Sep 22, 2021
9ba1b51
test ci
shahzad31 Sep 22, 2021
9a7f899
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 23, 2021
2c8d1cb
PR feedback
shahzad31 Sep 23, 2021
0a0dc60
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 23, 2021
f6c8bad
Merge branch 'master' into playwright-ftr-e2e
kibanamachine Sep 27, 2021
10f24eb
Merge branch 'master' into playwright-ftr-e2e
kibanamachine Sep 28, 2021
66bea77
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 28, 2021
f961fc7
fix kbm/pm
shahzad31 Sep 28, 2021
1504f56
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 28, 2021
92df7c9
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 28, 2021
d3e193e
revert
shahzad31 Sep 28, 2021
895a2ca
update typings
shahzad31 Sep 29, 2021
d5b8bf2
Merge branch 'playwright-ftr-e2e' of github.com:shahzad31/kibana into…
shahzad31 Sep 29, 2021
bb45d8b
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 29, 2021
9032192
update kbn/pm
shahzad31 Sep 29, 2021
1d03785
update kbn/pm
shahzad31 Sep 29, 2021
4c759ad
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 29, 2021
ad0cddd
update kbm/pm
shahzad31 Sep 29, 2021
2a4cf5b
Merge branch 'master' into playwright-ftr-e2e
kibanamachine Sep 29, 2021
53bdc0d
Merge branch 'master' into playwright-ftr-e2e
kibanamachine Sep 29, 2021
db30f27
Merge branch 'master' of github.com:elastic/kibana into playwright-ft…
shahzad31 Sep 30, 2021
4894c7e
added a comment
shahzad31 Sep 30, 2021
2ff4e80
added a comment
shahzad31 Sep 30, 2021
b53016c
Merge branch 'playwright-ftr-e2e' of github.com:shahzad31/kibana into…
shahzad31 Sep 30, 2021
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@
"@elastic/eslint-plugin-eui": "0.0.2",
"@elastic/github-checks-reporter": "0.0.20b3",
"@elastic/makelogs": "^6.0.0",
"@elastic/synthetics": "^1.0.0-beta.12",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/jest": "^11.3.0",
"@istanbuljs/schema": "^0.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ it('produces the right watch and ignore list', () => {
<absolute path>/x-pack/plugins/security_solution/scripts,
<absolute path>/x-pack/plugins/security_solution/server/lib/detection_engine/scripts,
<absolute path>/x-pack/plugins/metrics_entities/server/scripts,
<absolute path>/x-pack/plugins/uptime/e2e,
]
`);
});
1 change: 1 addition & 0 deletions packages/kbn-cli-dev-mode/src/get_server_watch_paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export function getServerWatchPaths({ pluginPaths, pluginScanDirs }: Options) {
fromRoot('x-pack/plugins/security_solution/scripts'),
fromRoot('x-pack/plugins/security_solution/server/lib/detection_engine/scripts'),
fromRoot('x-pack/plugins/metrics_entities/server/scripts'),
fromRoot('x-pack/plugins/uptime/e2e'),
];

return {
Expand Down
Loading