/* eslint-env jest */ import { createSandbox } from 'development-sandbox' import { FileRef, nextTestSetup } from 'e2e-utils' import path from 'path' import { outdent } from 'outdent' // TODO: figure out why snapshots mismatch on GitHub actions // specifically but work in docker and locally 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 (

Hello World

) } ` ) await session.assertNoRedbox() // Syntax error await session.patch('index.module.scss', `.button { font-size: :5px; }`) await session.assertHasRedbox() const source = await session.getRedboxSource() expect(source).toMatchSnapshot() // Fix syntax error 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 (

Hello World

) } ` ) // Checks for selectors that can't be prefixed. // Selector "button" is not pure (pure selectors must contain at least one local class or id) await session.patch('index.module.scss', `button { font-size: 5px; }`) await session.assertHasRedbox() const source2 = await session.getRedboxSource() expect(source2).toMatchSnapshot() }) })