We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea8fc5 commit 565e6a7Copy full SHA for 565e6a7
test/options.js renamed to test/options.test.js
@@ -2,7 +2,7 @@
2
3
const proxyquire = require('proxyquire')
4
const sinon = require('sinon')
5
-const { test } = require('tap')
+const { test } = require('node:test')
6
const Fastify = require('fastify')
7
8
const schema = `
@@ -31,7 +31,7 @@ const resolvers = {
31
32
test('call compileQuery with correct options if compilerOptions specified', async t => {
33
const app = Fastify()
34
- t.teardown(() => app.close())
+ t.after(() => app.close())
35
36
const compileQueryStub = sinon.stub()
37
0 commit comments