setup: initialize project with package.json, tsconfig, tsup, vitest, src skeleton, and test placeholders
This commit is contained in:
7
test/graph/construction.test.ts
Normal file
7
test/graph/construction.test.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
|
||||
describe('graph construction', () => {
|
||||
it('placeholder', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
7
test/graph/mutation.test.ts
Normal file
7
test/graph/mutation.test.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
|
||||
describe('graph mutation', () => {
|
||||
it('placeholder', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
7
test/graph/queries.test.ts
Normal file
7
test/graph/queries.test.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
|
||||
describe('graph queries', () => {
|
||||
it('placeholder', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
7
test/graph/validation.test.ts
Normal file
7
test/graph/validation.test.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
|
||||
describe('graph validation', () => {
|
||||
it('placeholder', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user