mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 13:50:06 +03:00
18 lines
401 B
JavaScript
18 lines
401 B
JavaScript
const { defineConfig } = require('cypress');
|
|
const { lighthouse, prepareAudit } = require('@cypress-audit/lighthouse');
|
|
|
|
module.exports = defineConfig({
|
|
projectId: 'wwi3xe',
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
on('before:browser:launch', (browser = {}, launchOptions) => {
|
|
prepareAudit(launchOptions);
|
|
});
|
|
|
|
on('task', {
|
|
lighthouse: lighthouse(),
|
|
});
|
|
},
|
|
},
|
|
retries: 3,
|
|
});
|