Skip to content

Commit

Permalink
chore: use alias path
Browse files Browse the repository at this point in the history
  • Loading branch information
chinesedfan committed Nov 9, 2019
1 parent fd71727 commit 5061b0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions __tests__/tests/api/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { v3 } from '../../../src/api';
import { open } from '../../data/api/pull-request';
import { notification } from '../../data/api/notification';
import { v3 } from 'api';
import { open } from 'testData/api/pull-request';
import { notification } from 'testData/api/notification';

describe('API v3 test', () => {
describe('v3 call', () => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/tests/reducers/issue.reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
SUBMIT_NEW_ISSUE,
} from 'issue/issue.type';
import { initialState, issueReducer } from 'issue/issue.reducer';
import { open } from '../../data/api/issue';
import { open } from 'testData/api/issue';

describe('Issuer Reducer', () => {
it('should have initial state', () => {
Expand Down
4 changes: 2 additions & 2 deletions __tests__/tests/reducers/user.reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {
GET_STAR_COUNT,
} from 'user/user.type';
import { initialState, userReducer } from 'user/user.reducer';
import user from '../../data/api/user';
import organization from '../../data/api/organization';
import user from 'testData/api/user';
import organization from 'testData/api/organization';

describe('User Reducer', () => {
it('should set initial state', () => {
Expand Down

0 comments on commit 5061b0d

Please sign in to comment.