Skip to content

Commit

Permalink
fesef
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Jun 14, 2023
1 parent 5f5b14c commit d70d359
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/lib/next-test-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ export function shouldRunTurboDevTest() {
return false
}

const shouldRunTurboDev = !!process.env.__INTERNAL_NEXT_DEV_TEST_TURBO_DEV
const shouldRunTurboDev = false //!!process.env.__INTERNAL_NEXT_DEV_TEST_TURBO_DEV
// short-circuit to run all the test with --turbo enabled skips glob matching costs
if (shouldRunTurboDev) {
console.log(
Expand All @@ -930,8 +930,7 @@ export function shouldRunTurboDevTest() {
return true
}

const shouldRunTurboDevWithMatches =
!!process.env.__INTERNAL_NEXT_DEV_TEST_TURBO_GLOB_MATCH
const shouldRunTurboDevWithMatches = false //!!process.env.__INTERNAL_NEXT_DEV_TEST_TURBO_GLOB_MATCH

// By default, we do not run any tests with `--turbo` flag.
if (!shouldRunTurboDevWithMatches) {
Expand Down

0 comments on commit d70d359

Please sign in to comment.