feat: Introduce backend test suite with ava
This commit is contained in:
8
packages/backend/src/graphql/queries/get-user.test.ts
Normal file
8
packages/backend/src/graphql/queries/get-user.test.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import test from 'ava';
|
||||
|
||||
const fn = () => 'foo';
|
||||
|
||||
test('getUser graphQL query', (t) => {
|
||||
// TODO: Write a test for getUser graphQL query
|
||||
t.is(fn(), 'foo');
|
||||
});
|
Reference in New Issue
Block a user