mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
ci: add cypress coverage
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
017d754f2a
commit
4b01ff5f67
3 changed files with 9 additions and 3 deletions
1
frontend/.gitignore
vendored
1
frontend/.gitignore
vendored
|
@ -11,6 +11,7 @@
|
|||
|
||||
# testing
|
||||
/coverage
|
||||
/.nyc_output
|
||||
|
||||
# downloaded files during tests with cypress
|
||||
/cypress/downloads
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
||||
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
@ -13,6 +13,10 @@ export default defineConfig({
|
|||
|
||||
e2e: {
|
||||
baseUrl: 'http://127.0.0.1:3001/',
|
||||
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}'
|
||||
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
|
||||
setupNodeEvents(on, config) {
|
||||
require('@cypress/code-coverage/task')(on, config)
|
||||
return config
|
||||
},
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
||||
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
@ -26,3 +26,4 @@ import './logout'
|
|||
import './visit'
|
||||
import './visit-test-editor'
|
||||
import 'cypress-commands'
|
||||
import '@cypress/code-coverage/support'
|
||||
|
|
Loading…
Reference in a new issue