mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 15:43:26 +00:00
repo setup
This commit is contained in:
7
src/__test__/oof.test.ts
Normal file
7
src/__test__/oof.test.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { LOG } from '@/testing/oof';
|
||||
|
||||
describe('oof.ts', () => {
|
||||
it('should contain hello', () => {
|
||||
expect(LOG).toContain('hello');
|
||||
});
|
||||
});
|
5
src/index.ts
Normal file
5
src/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { LOG } from '@/testing/oof';
|
||||
|
||||
export function test() {
|
||||
console.log(LOG);
|
||||
}
|
1
src/testing/oof.ts
Normal file
1
src/testing/oof.ts
Normal file
@@ -0,0 +1 @@
|
||||
export const LOG = 'hello world';
|
Reference in New Issue
Block a user