Skip to content

Commit

Permalink
Skip webpack specific test for Turbopack build
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Jun 20, 2024
1 parent d1f68ac commit acb1b36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/integration/css-customization/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import escapeStringRegexp from 'escape-string-regexp'

const fixturesDir = join(__dirname, '../..', 'css-fixtures')

describe('CSS Customization', () => {
// Test checks webpack loaders and plugins.
;(process.env.TURBOPACK ? describe.skip : describe)('CSS Customization', () => {
;(process.env.TURBOPACK_DEV ? describe.skip : describe)(
'production mode',
() => {
Expand Down
4 changes: 2 additions & 2 deletions test/turbopack-build-tests-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6958,7 +6958,8 @@
},
"test/integration/css-customization/test/index.test.js": {
"passed": [],
"failed": [
"failed": [],
"pending": [
"CSS Customization production mode Bad CSS Customization Array (1) should fail the build",
"CSS Customization production mode Bad CSS Customization Array (2) should fail the build",
"CSS Customization production mode Bad CSS Customization Array (3) should fail the build",
Expand All @@ -6980,7 +6981,6 @@
"CSS Customization production mode Correct CSS Customization custom loader should compile successfully",
"CSS Customization production mode Correct CSS Customization custom loader should've applied style"
],
"pending": [],
"flakey": [],
"runtimeError": false
},
Expand Down

0 comments on commit acb1b36

Please sign in to comment.