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

adopt smoke test repo changes #146899

Merged
merged 1 commit into from Apr 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/smoke/src/areas/search/search.test.ts
Expand Up @@ -33,7 +33,7 @@ export function setup(logger: Logger) {
await app.workbench.search.openSearchViewlet();
await app.workbench.search.searchFor('body');

await app.workbench.search.waitForResultText('16 results in 5 files');
await app.workbench.search.waitForResultText('6 results in 3 files');
});

it('searches only for *.js files & checks for correct result number', async function () {
Expand All @@ -51,8 +51,8 @@ export function setup(logger: Logger) {
it('dismisses result & checks for correct result number', async function () {
const app = this.app as Application;
await app.workbench.search.searchFor('body');
await app.workbench.search.waitForResultText('16 results in 5 files');
await app.workbench.search.removeFileMatch('app.js', '12 results in 4 files');
await app.workbench.search.waitForResultText('6 results in 3 files');
await app.workbench.search.removeFileMatch('app.js', '2 results in 2 files');
});

it.skip('replaces first search result with a replace term', async function () { // TODo@roblourens https://github.com/microsoft/vscode/issues/137195
Expand Down