From 2958afb0de66334ed012a34f3249e9f8c4d067a3 Mon Sep 17 00:00:00 2001 From: manchenkoff Date: Thu, 21 Sep 2023 22:46:25 +0200 Subject: [PATCH] tests formatting --- test/basic.test.ts | 1 - test/fixtures/basic/nuxt.config.ts | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/test/basic.test.ts b/test/basic.test.ts index be6df6c..eda0643 100644 --- a/test/basic.test.ts +++ b/test/basic.test.ts @@ -8,7 +8,6 @@ describe('ssr', async () => { }); it('renders the index page', async () => { - // Get response to a server-rendered page with `$fetch`. const html = await $fetch('/'); expect(html).toContain('
basic
'); }); diff --git a/test/fixtures/basic/nuxt.config.ts b/test/fixtures/basic/nuxt.config.ts index 67fed93..d7d8f62 100644 --- a/test/fixtures/basic/nuxt.config.ts +++ b/test/fixtures/basic/nuxt.config.ts @@ -1,5 +1,3 @@ -import MyModule from '../../../src/module'; - export default defineNuxtConfig({ - modules: [MyModule], + modules: ['../../../src/module'], });