Skip to content

Commit

Permalink
Fix nuxt e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiborza committed Nov 27, 2024
1 parent a504446 commit 24c85c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e-tests/tests/nuxt-3.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function testNuxtProjectConfigs(projectDir: string) {
' }',
'},',
'sourcemap: {',
' client: true',
" client: 'hidden'",
'}',
]);
});
Expand Down
4 changes: 2 additions & 2 deletions e2e-tests/tests/nuxt-4.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function testNuxtProjectSetup(projectDir: string) {
});

test('example page exists', () => {
checkFileExists(`${projectDir}'/app/pages/sentry-example-page.vue`);
checkFileExists(`${projectDir}/app/pages/sentry-example-page.vue`);
checkFileExists(`${projectDir}/server/api/sentry-example-api.ts`);
});
}
Expand All @@ -113,7 +113,7 @@ function testNuxtProjectConfigs(projectDir: string) {
' }',
'},',
'sourcemap: {',
' client: true',
" client: 'hidden'",
'}',
]);
});
Expand Down

0 comments on commit 24c85c8

Please sign in to comment.