diff options
author | 2021-01-06 08:00:31 +0300 | |
---|---|---|
committer | 2021-01-06 09:36:01 +0300 | |
commit | 996c14afb9d81e962ef66b99bd869bce4f3688f0 (patch) | |
tree | ea19a979c62a0da3685a1ea44a624ee2863320cc /src/tests | |
parent | Fixes Model Casing (diff) |
Breaks Up CSS Into Components
Moves the styles from the CSS file, into emotion CSS in each component's
file to make navigation easier, and keep CSS and JSX together.Drops
raw-loader dependency.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/pages/FormPage.test.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/pages/FormPage.test.tsx b/src/tests/pages/FormPage.test.tsx index f7ecc32..62577cd 100644 --- a/src/tests/pages/FormPage.test.tsx +++ b/src/tests/pages/FormPage.test.tsx @@ -27,6 +27,6 @@ test("calls api method to load form", () => { Object.defineProperty(forms, "getForm", {value: jest.fn(oldImpl)}); render(<Router><Route history={history}><FormPage /></Route></Router>); - + expect(forms.getForm).toBeCalled(); }); |