|
|
|
|
|
import { createSandbox } from 'development-sandbox' |
|
|
import { FileRef, nextTestSetup } from 'e2e-utils' |
|
|
import path from 'path' |
|
|
import { outdent } from 'outdent' |
|
|
|
|
|
|
|
|
|
|
|
describe.skip('ReactRefreshLogBox scss app', () => { |
|
|
const { next } = nextTestSetup({ |
|
|
files: new FileRef(path.join(__dirname, 'fixtures', 'default-template')), |
|
|
dependencies: { |
|
|
sass: 'latest', |
|
|
}, |
|
|
skipStart: true, |
|
|
}) |
|
|
|
|
|
test('scss syntax errors', async () => { |
|
|
await using sandbox = await createSandbox(next) |
|
|
const { session } = sandbox |
|
|
|
|
|
await session.write('index.module.scss', `.button { font-size: 5px; }`) |
|
|
await session.patch( |
|
|
'index.js', |
|
|
outdent` |
|
|
import './index.module.scss'; |
|
|
export default () => { |
|
|
return ( |
|
|
<div> |
|
|
<p>Hello World</p> |
|
|
</div> |
|
|
) |
|
|
} |
|
|
` |
|
|
) |
|
|
|
|
|
await session.assertNoRedbox() |
|
|
|
|
|
|
|
|
await session.patch('index.module.scss', `.button { font-size: :5px; }`) |
|
|
await session.assertHasRedbox() |
|
|
const source = await session.getRedboxSource() |
|
|
expect(source).toMatchSnapshot() |
|
|
|
|
|
|
|
|
await session.patch('index.module.scss', `.button { font-size: 5px; }`) |
|
|
await session.assertNoRedbox() |
|
|
}) |
|
|
|
|
|
test('scss module pure selector error', async () => { |
|
|
await using sandbox = await createSandbox(next) |
|
|
const { session } = sandbox |
|
|
|
|
|
await session.write('index.module.scss', `.button { font-size: 5px; }`) |
|
|
await session.patch( |
|
|
'index.js', |
|
|
outdent` |
|
|
import './index.module.scss'; |
|
|
export default () => { |
|
|
return ( |
|
|
<div> |
|
|
<p>Hello World</p> |
|
|
</div> |
|
|
) |
|
|
} |
|
|
` |
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
await session.patch('index.module.scss', `button { font-size: 5px; }`) |
|
|
await session.assertHasRedbox() |
|
|
const source2 = await session.getRedboxSource() |
|
|
expect(source2).toMatchSnapshot() |
|
|
}) |
|
|
}) |
|
|
|