···10101111describe('nuxt-workers', () => {
1212 it('should work on the server', async () => {
1313- expect(await $fetch('/')).toContain('Hello from worker!')
1313+ const html = await $fetch('/')
1414+ expect(html).toContain('Hello from worker!')
1515+ expect(html).toContain('Hello from layer worker!')
1416 })
15171618 it('should work on the client', async () => {