Skip to content

Commit 5061b0d

Browse files
committed
chore: use alias path
1 parent fd71727 commit 5061b0d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

__tests__/tests/api/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { v3 } from '../../../src/api';
2-
import { open } from '../../data/api/pull-request';
3-
import { notification } from '../../data/api/notification';
1+
import { v3 } from 'api';
2+
import { open } from 'testData/api/pull-request';
3+
import { notification } from 'testData/api/notification';
44

55
describe('API v3 test', () => {
66
describe('v3 call', () => {

__tests__/tests/reducers/issue.reducer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
SUBMIT_NEW_ISSUE,
1414
} from 'issue/issue.type';
1515
import { initialState, issueReducer } from 'issue/issue.reducer';
16-
import { open } from '../../data/api/issue';
16+
import { open } from 'testData/api/issue';
1717

1818
describe('Issuer Reducer', () => {
1919
it('should have initial state', () => {

__tests__/tests/reducers/user.reducer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import {
1111
GET_STAR_COUNT,
1212
} from 'user/user.type';
1313
import { initialState, userReducer } from 'user/user.reducer';
14-
import user from '../../data/api/user';
15-
import organization from '../../data/api/organization';
14+
import user from 'testData/api/user';
15+
import organization from 'testData/api/organization';
1616

1717
describe('User Reducer', () => {
1818
it('should set initial state', () => {

0 commit comments

Comments
 (0)