Add slight delay to test

For #101922

I can't repo this locally but suspect it may be timing related
This commit is contained in:
Matt Bierner 2020-07-08 10:58:39 -07:00
parent dee0511b58
commit 76471bdb74

View file

@ -6,7 +6,7 @@
import * as assert from 'assert';
import 'mocha';
import * as vscode from 'vscode';
import { CURSOR, withRandomFileEditor, joinLines } from './testUtils';
import { CURSOR, withRandomFileEditor, wait, joinLines } from './testUtils';
const onDocumentChange = (doc: vscode.TextDocument): Promise<vscode.TextDocument> => {
return new Promise<vscode.TextDocument>(resolve => {
@ -42,6 +42,8 @@ suite('OnEnter', () => {
test('should indent within empty object literal', () => {
return withRandomFileEditor(`({${CURSOR}})`, 'js', async (_editor, document) => {
await type(document, '\nx');
await wait(500);
assert.strictEqual(
document.getText(),
joinLines(`({`,
@ -49,15 +51,4 @@ suite('OnEnter', () => {
`})`));
});
});
test('should indent after simple jsx tag with attributes', () => {
return withRandomFileEditor(`const a = <div onclick={bla}>${CURSOR}`, 'jsx', async (_editor, document) => {
await type(document, '\nx');
assert.strictEqual(
document.getText(),
joinLines(
`const a = <div onclick={bla}>`,
` x`));
});
});
});