mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-20 23:28:42 -05:00
41272643aa
* chore: add a private method on Cypress that tracks whether source maps are enabled * refactor * oops * refactor
20 lines
495 B
TypeScript
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',
|
|
})
|
|
})
|