From 411681a3b96133e8381597a019a8793c35eaab98 Mon Sep 17 00:00:00 2001 From: m03geek <928021-m03geek@users.noreply.gitlab.com> Date: Sun, 24 May 2020 19:29:13 +0300 Subject: [PATCH] chore: ts build fix --- src/__tests__/exports.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/__tests__/exports.spec.ts b/src/__tests__/exports.spec.ts index 2e0da81..c302bb1 100644 --- a/src/__tests__/exports.spec.ts +++ b/src/__tests__/exports.spec.ts @@ -1,7 +1,6 @@ -import { name } from '../../package.json'; import fastifyPlugin = require('../index'); -describe(name, () => { +describe('exports plugin', () => { test('fastify plugin exported', async () => { expect(fastifyPlugin).toBeDefined(); });