8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
|
|
import { apiInterfaces } from './api-interfaces';
|
||
|
|
|
||
|
|
describe('apiInterfaces', () => {
|
||
|
|
it('should work', () => {
|
||
|
|
expect(apiInterfaces()).toEqual('api-interfaces');
|
||
|
|
});
|
||
|
|
});
|