mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 09:44:04 +00:00
aacf2289de
* Improve the web tests * That's not portable * Use regex here * Set concurrency on web CI
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
scrollBehavior: 'center',
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
supportFile: false,
|
|
},
|
|
})
|