mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 08:08:39 +01:00
Retry test
Adding simple retry while investigating why this sometimes times out
This commit is contained in:
@@ -151,7 +151,9 @@ suite('vscode API - webview', () => {
|
||||
assert.strictEqual(secondResponse.value, 1);
|
||||
});
|
||||
|
||||
test('webviews with retainContextWhenHidden should preserve their context when they are hidden', async () => {
|
||||
test('webviews with retainContextWhenHidden should preserve their context when they are hidden', async function () {
|
||||
this.retries(3);
|
||||
|
||||
const webview = _register(vscode.window.createWebviewPanel(webviewId, 'title', { viewColumn: vscode.ViewColumn.One }, { enableScripts: true, retainContextWhenHidden: true }));
|
||||
const ready = getMessage(webview);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user