repo setup

This commit is contained in:
mrjvs
2023-06-21 14:50:06 +02:00
commit 2f2db1aab8
16 changed files with 6653 additions and 0 deletions

7
src/__test__/oof.test.ts Normal file
View 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
View File

@@ -0,0 +1,5 @@
import { LOG } from '@/testing/oof';
export function test() {
console.log(LOG);
}

1
src/testing/oof.ts Normal file
View File

@@ -0,0 +1 @@
export const LOG = 'hello world';