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

Fixed minor typos #78042

Merged
merged 1 commit into from
Aug 5, 2019
Merged
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions test/smoke/src/areas/workbench/data-migration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function setup(stableCodePath: string, testDataPath: string) {
insiderOptions.userDataDir = userDataDir;

const insidersApp = new Application(insiderOptions);
await insidersApp!.start(false /* not expecting walkthrough parth */);
await insidersApp!.start(false /* not expecting walkthrough path */);

// Verify 3 editors are open
await insidersApp.workbench.editors.waitForEditorFocus('Untitled-1');
Expand All @@ -66,7 +66,7 @@ export function setup(stableCodePath: string, testDataPath: string) {
await stableApp.workbench.editors.newUntitledFile();

const untitled = 'Untitled-1';
const textToTypeInUntitled = 'Hello, Unitled Code';
const textToTypeInUntitled = 'Hello, Untitled Code';
await stableApp.workbench.editor.waitForTypeInEditor(untitled, textToTypeInUntitled);

const readmeMd = 'readme.md';
Expand All @@ -80,7 +80,7 @@ export function setup(stableCodePath: string, testDataPath: string) {
insiderOptions.userDataDir = userDataDir;

const insidersApp = new Application(insiderOptions);
await insidersApp!.start(false /* not expecting walkthrough parth */);
await insidersApp!.start(false /* not expecting walkthrough path */);

await insidersApp.workbench.editors.waitForActiveTab(readmeMd, true);
await insidersApp.workbench.editor.waitForEditorContents(readmeMd, c => c.indexOf(textToType) > -1);
Expand All @@ -92,4 +92,4 @@ export function setup(stableCodePath: string, testDataPath: string) {
await insidersApp.stop();
});
});
}
}