Skip to content

Commit 95ae2c5

Browse files
rm log, .only
1 parent c335430 commit 95ae2c5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

e2e/react-start/server-functions/tests/server-functions.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ test('redirect in server function called in query during SSR', async ({
542542
expect(page.url()).toContain('/redirect-test-ssr/target')
543543
})
544544

545-
test.describe.only('server function returns 405 when method is not allowed', () => {
545+
test.describe('server function returns 405 when method is not allowed', () => {
546546
test('serverFn defined with GET method', async ({ page }) => {
547547
await page.goto('/method-not-allowed/get')
548548

e2e/react-start/server-functions/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export default defineConfig({
1919
serverFns: {
2020
generateFunctionId: (opts) => {
2121
const id = `${opts.filename}/${opts.functionName}`
22-
console.log('serverFn', id)
2322
if (FUNCTIONS_WITH_CONSTANT_ID.includes(id)) return 'constant_id'
2423
else return undefined
2524
},

0 commit comments

Comments
 (0)