Skip to content
Snippets Groups Projects
Commit 840b4f01 authored by Atte Keinänen's avatar Atte Keinänen
Browse files

Fix lint errors in tests

parent c7e18011
No related branches found
No related tags found
No related merge requests found
......@@ -99,8 +99,8 @@ export function switchToTestFixtureDatabase() {
api.basename = process.env.TEST_FIXTURE_BACKEND_HOST;
}
const isPlainDatabase = () => api.basename === process.env.PLAIN_BACKEND_HOST;
const isTestFixtureDatabase = () => api.basename === process.env.TEST_FIXTURE_BACKEND_HOST;
export const isPlainDatabase = () => api.basename === process.env.PLAIN_BACKEND_HOST;
export const isTestFixtureDatabase = () => api.basename === process.env.TEST_FIXTURE_BACKEND_HOST;
/**
* Creates an augmented Redux store for testing the whole app including browser history manipulation. Includes:
......
......@@ -4,13 +4,11 @@ import {
BROWSER_HISTORY_REPLACE
} from "__support__/integrated_tests";
import {
click,
clickButton,
setInputValue
} from "__support__/enzyme_utils";
import { mount } from "enzyme";
import { delay } from "metabase/lib/promise"
import Setup from "metabase/setup/components/Setup";
import { SET_ACTIVE_STEP } from "metabase/setup/actions";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment