Files
cypress/system-tests/test/sourcemaps_spec.ts
T
Ryan Manuel 41272643aa chore: add a private method on Cypress that tracks whether source maps are available (#32140)
* chore: add a private method on Cypress that tracks whether source maps are enabled

* refactor

* oops

* refactor
2025-08-04 08:50:59 -05:00

20 lines
495 B
TypeScript

import systemTests from '../lib/system-tests'
describe('e2e sourcemaps', () => {
systemTests.setup()
systemTests.it('detects sourcemaps as enabled', {
browser: '!webkit',
project: 'sourcemaps',
spec: 'validate-sourcemaps.cy.js',
configFile: 'cypress-enabled.config.js',
})
systemTests.it('detects sourcemaps as disabled', {
browser: '!webkit',
project: 'sourcemaps',
spec: 'validate-sourcemaps.cy.js',
configFile: 'cypress-disabled.config.js',
})
})