mirror of
https://github.com/prymitive/karma
synced 2026-05-09 03:36:44 +00:00
10 lines
277 B
JavaScript
10 lines
277 B
JavaScript
import { EmptyAPIResponse } from "__mocks__/Fetch";
|
|
|
|
it("renders without crashing", () => {
|
|
const response = EmptyAPIResponse();
|
|
response.filters = [];
|
|
fetch.mockResponse(JSON.stringify(response));
|
|
const Index = require("./index.js");
|
|
expect(Index).toBeTruthy();
|
|
});
|