next.js / test /development /sass-error /index.test.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import { nextTestSetup } from 'e2e-utils'
import { waitForRedbox, getRedboxSource } from 'next-test-utils'
describe('app dir - css', () => {
const { next, skipped } = nextTestSetup({
files: __dirname,
skipDeployment: true,
dependencies: {
sass: 'latest',
},
})
if (skipped) {
return
}
describe('sass support', () => {
;(process.env.IS_TURBOPACK_TEST ? describe : describe.skip)(
'error handling',
() => {
it('should use original source points for sass errors', async () => {
const browser = await next.browser('/sass-error')
await waitForRedbox(browser)
const source = await getRedboxSource(browser)
// css-loader does not report an error for this case
expect(source).toMatchInlineSnapshot(`
"./app/global.scss.css (45:1)
Parsing CSS source code failed
43 | }
44 |
> 45 | input.defaultCheckbox::before path {
| ^
46 | fill: currentColor;
47 | }
48 |
Pseudo-elements like '::before' or '::after' can't be followed by selectors like 'Ident("path")'
Import trace:
Client Component Browser:
./app/global.scss.css [Client Component Browser]
./app/layout.js [Client Component Browser]
./app/layout.js [Server Component]"
`)
})
}
)
})
})