Run shell integration tests 100 times in CI

Part of #150478
This commit is contained in:
Daniel Imms 2022-06-15 06:59:40 -07:00
parent 03be93691c
commit 1f5dc6a572
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -28,8 +28,8 @@ export function setup() {
await terminal.runCommandWithValue(TerminalCommandIdWithValue.NewWithProfile, process.platform === 'win32' ? 'PowerShell' : 'bash');
}
// TODO: These are currently flaky https://github.com/microsoft/vscode/issues/150478
describe.skip('Shell integration', function () {
for (let i = 0; i < 100; i++) {
describe(`Shell integration ${i}`, function () {
describe('Decorations', function () {
describe('Should show default icons', function () {
it('Placeholder', async () => {
@ -61,5 +61,6 @@ export function setup() {
});
});
});
}
});
}