Skip to content

Commit

Permalink
[ch #[165763482]] fix issue with rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
espoirMur committed May 7, 2019
1 parent 62e81d2 commit dc74356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/__actions__/createArticle.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dotenv.config();
const middlewares = [thunk];
const mockStore = configureMockStore(middlewares);

const BASE_URL = process.env.API_BASE_URL;
const BASE_URL = process.env.API_URL;
describe("article action creators", () => {
test("should return the on input change action", () => {
const data = {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/__actions__/readArticleAction.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
const middlewares = [thunk];
const mockStore = configureMockStore(middlewares);

const BASE_URL = process.env.API_BASE_URL;
const BASE_URL = process.env.API_URL;
describe("fetching article", () => {
test("should return fetching article action", () => {
expect(fetchingArticle()).toEqual({ type: FETCHING_ARTICLE });
Expand Down

0 comments on commit dc74356

Please sign in to comment.