smoke - wait for tab becoming dirty before exit

This commit is contained in:
Benjamin Pasero 2021-11-26 11:00:11 +01:00
parent bab15fcbb0
commit 8d250e99e7
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65

View file

@ -47,11 +47,13 @@ export function setup(opts: ParsedArgs, testDataPath: string) {
const untitled = 'Untitled-1';
const textToTypeInUntitled = 'Hello from Untitled';
await app.workbench.editor.waitForTypeInEditor(untitled, textToTypeInUntitled);
await app.workbench.editors.waitForTab(untitled, true);
const readmeMd = 'readme.md';
const textToType = 'Hello, Code';
await app.workbench.quickaccess.openFile(readmeMd);
await app.workbench.editor.waitForTypeInEditor(readmeMd, textToType);
await app.workbench.editors.waitForTab(readmeMd, true);
await app.restart();
@ -146,11 +148,13 @@ export function setup(opts: ParsedArgs, testDataPath: string) {
const untitled = 'Untitled-1';
const textToTypeInUntitled = 'Hello from Untitled';
await stableApp.workbench.editor.waitForTypeInEditor(untitled, textToTypeInUntitled);
await stableApp.workbench.editors.waitForTab(untitled, true);
const readmeMd = 'readme.md';
const textToType = 'Hello, Code';
await stableApp.workbench.quickaccess.openFile(readmeMd);
await stableApp.workbench.editor.waitForTypeInEditor(readmeMd, textToType);
await stableApp.workbench.editors.waitForTab(readmeMd, true);
await stableApp.stop();
stableApp = undefined;