skip flaky test (#139960)

This commit is contained in:
Benjamin Pasero 2022-02-24 13:27:04 +01:00
parent 8c813014b5
commit 6640f3c721
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65

View file

@ -212,7 +212,7 @@ suite('vscode API - webview', () => {
assert.strictEqual(Math.round(secondResponse.value), 100);
});
test('webviews with retainContextWhenHidden should be able to recive messages while hidden', async () => {
test.skip('webviews with retainContextWhenHidden should be able to recive messages while hidden', async () => { // TODO@mjbvz https://github.com/microsoft/vscode/issues/139960
const webview = _register(vscode.window.createWebviewPanel(webviewId, 'title', { viewColumn: vscode.ViewColumn.One }, { enableScripts: true, retainContextWhenHidden: true }));
const ready = getMessage(webview);