Disable flaky PluginContainer test (#3693)

Summary:
Keeps flaking out: https://github.com/facebook/flipper/runs/6308722109?check_suite_focus=true

Pull Request resolved: https://github.com/facebook/flipper/pull/3693

Reviewed By: aigoncharov

Differential Revision: D36170437

Pulled By: passy

fbshipit-source-id: 471e702243d68d927287aad5d1fc1d8c392b059c
This commit is contained in:
Pascal Hartig
2022-05-09 03:35:52 -07:00
committed by Facebook GitHub Bot
parent bf06202e75
commit 39317adfb7

View File

@@ -111,7 +111,8 @@ test('Plugin container can render plugin and receive updates', async () => {
expect((await renderer.findByTestId('counter')).textContent).toBe('2'); expect((await renderer.findByTestId('counter')).textContent).toBe('2');
}); });
test('PluginContainer can render Sandy plugins', async () => { // TODO(T119353406): Disabled due to flakiness.
test.skip('PluginContainer can render Sandy plugins', async () => {
let renders = 0; let renders = 0;
function MySandyPlugin() { function MySandyPlugin() {