From 49281095e7fc860c9c410f72ad382665242ff181 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 26 Sep 2024 14:00:16 +0200 Subject: [PATCH] test: toto test --- packages/nuxt/__tests__/nuxt.spec.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/nuxt/__tests__/nuxt.spec.ts b/packages/nuxt/__tests__/nuxt.spec.ts index 51f7cf5a83..30a74f3a77 100644 --- a/packages/nuxt/__tests__/nuxt.spec.ts +++ b/packages/nuxt/__tests__/nuxt.spec.ts @@ -33,4 +33,9 @@ describe('works with nuxt', async () => { const html = await $fetch('/') expect(html).toContain('Count: 101') }) + + it.todo('drop state that is marked with skipHydrate', async () => { + const html = await $fetch('/skip-hydrate') + // TODO: + }) })