Search smoke tests (#13469)

* Add smoke test

* add simple tests for searching in notebooks view

* address pr comments

* address pr comments

* add search smoke tests to separate file

* remove span from selector
This commit is contained in:
Barbara Valdez
2021-03-25 12:43:55 -07:00
committed by GitHub
parent 94c0795fc7
commit 15f7b12849
3 changed files with 58 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
import { setup as setupQueryEditorTests, setupWeb as setupQueryEditorWebTests } from './areas/queryEditor/queryEditor.test';
import { setup as setupNotebookTests } from './areas/notebook/notebook.test';
import { setup as setupNotebookViewTests } from './areas/notebook/notebookView.test';
import { ApplicationOptions } from '../../../automation';
import * as yazl from 'yauzl';
import * as fs from 'fs';
@@ -19,6 +20,7 @@ export function main(isWeb: boolean = false): void {
setupQueryEditorTests();
}
setupNotebookTests();
setupNotebookViewTests();
}
/* eslint-disable no-sync */