Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Oct 8, 2022
1 parent 99b0cb4 commit 8dc051f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion test/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,6 @@ describe('extends support', () => {
// Bug #7337
describe('deferred app suspense resolve', () => {
async function behaviour (path: string) {

await withLogs(async (page, logs) => {
await page.goto(url(path))
await page.waitForLoadState('networkidle')
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/basic/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ export default defineNuxtConfig({
meta: {
...page.meta || {},
layout: undefined,
_layout: page.meta?.layout,
_layout: page.meta?.layout
}
})
nuxt.hook('pages:extend', pages => {
nuxt.hook('pages:extend', (pages) => {
const newPages = []
for (const page of pages) {
if (routesToDuplicate.includes(page.path)) {
Expand Down

0 comments on commit 8dc051f

Please sign in to comment.