matomo
Last commit date
app
1 month ago
assets
1 month ago
classes
2 weeks ago
config
2 months ago
languages
6 years ago
misc
5 months ago
node_modules
4 years ago
plugins
2 weeks ago
.htaccess
5 months ago
LEGALNOTICE
2 years ago
LICENSE
6 years ago
matomo.php
2 weeks ago
readme.txt
2 weeks ago
shared.php
3 years ago
uninstall.php
6 years ago
wdio.conf.uninstall.ts
1 year ago
wdio.conf.uninstall.ts
15 lines
| 1 | // wdio config for e2e tests that uninstall matomo |
| 2 | |
| 3 | import { config as baseConfig } from './wdio.conf.js'; |
| 4 | |
| 5 | export const config = { |
| 6 | ...baseConfig, |
| 7 | maxInstances: 1, |
| 8 | specs: [ |
| 9 | // in a separate folder so we can ensure it is run after the others |
| 10 | './tests/e2e-uninstall/*.e2e.ts', |
| 11 | ], |
| 12 | exclude: [], |
| 13 | onPrepare: null, |
| 14 | }; |
| 15 |