Skip to content

Commit

Permalink
fix ci-only test failure again
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielburnworth committed Jan 3, 2020
1 parent e283853 commit 4549ecf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/folders/__tests__/component_test.tsx
Expand Up @@ -23,11 +23,16 @@ jest.mock("@blueprintjs/core", () => ({
Position: jest.fn(),
PopoverInteractionKind: jest.fn(),
Button: jest.fn(p => <button>{p.text}</button>),
Classes: { getClassNamespace: jest.fn() },
Classes: jest.fn(),
MenuItem: jest.fn(),
Alignment: jest.fn(),
}));

jest.mock("@blueprintjs/select", () => ({
Select: { ofType: jest.fn() },
ItemRenderer: jest.fn(),
}));

import * as React from "react";
import { mount, shallow } from "enzyme";
import {
Expand Down

0 comments on commit 4549ecf

Please sign in to comment.