File size: 1,517 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
import { nextTestSetup } from 'e2e-utils'
import { assertHasRedbox, 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 assertHasRedbox(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")' at [project]/app/global.scss.css:0:884
Import trace:
Client Component Browser:
./app/global.scss.css [Client Component Browser]
./app/layout.js [Client Component Browser]
./app/layout.js [Server Component]"
`)
})
}
)
})
})
|