Skip to content

Commit

Permalink
[js] Disable another flaky test
Browse files Browse the repository at this point in the history
Test Plan:
```
$ yarn test
Test Suites: 2 skipped, 98 passed, 98 of 100 total
Tests:       19 skipped, 545 passed, 564 total
Snapshots:   190 passed, 190 total
Time:        44.194 s, estimated 169 s
Ran all test suites.
✨  Done in 49.96s.
```
  • Loading branch information
passy committed Jul 12, 2024
1 parent 7edbc21 commit fb633d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion desktop/flipper-ui/src/__tests__/PluginContainer.node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ test.skip('Plugin container can render plugin and receive updates', async () =>
expect((await renderer.findByTestId('counter')).textContent).toBe('2');
});

test('Number of times console errors/warning during plugin render', async () => {
// TODO(T119353406): Disabled due to flakiness.
test.skip('Number of times console errors/warning during plugin render', async () => {
await renderMockFlipperWithPlugin(TestPlugin);

expect(errorSpy.mock.calls).toEqual([
Expand Down

0 comments on commit fb633d0

Please sign in to comment.