rewrite some automation; add notebook tests (#10853)

This commit is contained in:
Anthony Dresser
2020-06-11 13:17:10 -07:00
committed by GitHub
parent f862d77f34
commit 6b86cbdd6e
6 changed files with 57 additions and 13 deletions

View File

@@ -3,7 +3,8 @@
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { setup as setupQueryEditorTest } from './areas/queryEditor/queryEditor.test';
import { setup as setupQueryEditorTests } from './areas/queryEditor/queryEditor.test';
import { setup as setupNotebookTests } from './areas/notebook/notebook.test';
import { ApplicationOptions } from '../../../automation';
import * as yazl from 'yauzl';
import * as fs from 'fs';
@@ -12,7 +13,8 @@ import { request } from 'https';
import * as mkdirp from 'mkdirp';
export function main(): void {
setupQueryEditorTest();
setupQueryEditorTests();
setupNotebookTests();
}
/* eslint-disable no-sync */