Skip to content

Commit

Permalink
Skip flaky Ubuntu test
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew committed Oct 7, 2024
1 parent 42c7610 commit 518388b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/playwright/src/tests/theia-explorer-view.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ test.describe('Theia Explorer View', () => {
expect(await explorer.existsDirectoryNode('sampleDirectoryCompact/nestedFolder1/nestedFolder2', true /* compact */)).toBe(true);
});

test('should delete nested folder "sampleDirectoryCompact/nestedFolder1/nestedFolder2"', async () => {
// TODO This test only seems to fail on Ubuntu - it's not clear why
test.skip('should delete nested folder "sampleDirectoryCompact/nestedFolder1/nestedFolder2"', async () => {
const fileStatElements = await explorer.visibleFileStatNodes();
expect(await explorer.existsDirectoryNode('sampleDirectoryCompact/nestedFolder1/nestedFolder2', true /* compact */)).toBe(true);
await explorer.deleteNode('sampleDirectoryCompact/nestedFolder1/nestedFolder2', true /* confirm */, 'nestedFolder2' /* nodeSegmentLabel */);
Expand Down

0 comments on commit 518388b

Please sign in to comment.