All files / src/components/pages/filesytem Filesystem.stories.tsx

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26                        1x 1x   1x 2x 2x                
import React from "react";
import { storiesOf } from "@storybook/react";
import { BrowserRouter } from "react-router-dom";
import "../../../style/custom.scss";
import FileSystem from "./Filesystem";
import { Provider } from "react-redux";
import store from "../../../background/redux/store";
import { filesystemPath, hostname } from "../../../background/api/api";
import MockAdapter from "axios-mock-adapter";
import axios from "axios";
import folderContentMock from "./__tests__/folderContentMock.json";
 
const mock = new MockAdapter(axios);
const API_REQUEST = hostname + filesystemPath + "/contents";
 
storiesOf("Filesystem", module).add("default", () => {
  mock.onGet(API_REQUEST).reply(200, folderContentMock);
  return (
    <Provider store={store}>
      <BrowserRouter>
        <FileSystem />
      </BrowserRouter>
    </Provider>
  );
});