Skip to content

Commit 19982e5

Browse files
Should be AND not OR
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
1 parent c893044 commit 19982e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/app-dir/proxy-nfc-traced/proxy-nfc-traced.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('proxy-nfc-traced', () => {
1313

1414
// 'middleware.js' won't be traced because Turbopack doesn't bundle all code to .next/server/middleware.js
1515
// Also, you cannot stabley use readFile in deployment tests.
16-
if (!isTurbopack || !isNextDeploy) {
16+
if (!isTurbopack && !isNextDeploy) {
1717
it('should have renamed trace file as middleware instead of proxy', async () => {
1818
const nfc = JSON.parse(
1919
fs.readFileSync(

0 commit comments

Comments
 (0)