2021-01-14 10:10:46 -05:00
|
|
|
export * from './api/groups_api';
|
|
|
|
export * from './api/projects_api';
|
|
|
|
export * from './api/user_api';
|
2021-06-07 05:10:26 -04:00
|
|
|
export * from './api/markdown_api';
|
2021-10-04 11:12:14 -04:00
|
|
|
export * from './api/bulk_imports_api';
|
2021-01-14 10:10:46 -05:00
|
|
|
|
|
|
|
// Note: It's not possible to spy on methods imported from this file in
|
2021-09-15 08:11:13 -04:00
|
|
|
// Jest tests.
|
2021-01-14 10:10:46 -05:00
|
|
|
// As a workaround, in Jest tests, import the methods from the file
|
|
|
|
// in which they are defined:
|
|
|
|
//
|
|
|
|
// import * as UserApi from '~/api/user_api';
|
|
|
|
// vs...
|
|
|
|
// import * as UserApi from '~/rest_api';
|
|
|
|
//
|
|
|
|
// // This will only work with option #2 above.
|
|
|
|
// jest.spyOn(UserApi, 'getUsers')
|