@revoloo/cypress6
Version:
Cypress.io end to end testing tool
34 lines (26 loc) • 914 B
text/typescript
import fs from 'fs-extra'
import path from 'path'
import e2e, { expect } from '../support/helpers/e2e'
import Fixtures from '../support/helpers/fixtures'
const e2ePath = Fixtures.projectPath('e2e')
const outputPath = path.join(e2ePath, 'output.json')
describe('testConfigOverrides', () => {
e2e.setup()
e2e.it('fails when passing invalid config value browser', {
spec: 'testConfigOverrides-invalid-browser.js',
snapshot: true,
expectedExitCode: 1,
})
e2e.it('has originalTitle when skip due to browser config', {
spec: 'testConfigOverrides-skip-browser.js',
snapshot: true,
outputPath,
browser: 'electron',
async onRun (exec) {
await exec()
const results = await fs.readJson(outputPath)
// make sure we've respected test.originalTitle
expect(results.runs[0].tests[0].title).deep.eq(['suite', 'has invalid testConfigOverrides'])
},
})
})