Skip to content
Snippets Groups Projects
Commit 4b761718 authored by Arie Peterson's avatar Arie Peterson
Browse files

Merge branch '1086-let-cypress-continue-after-uncaught-exception' into 'main'

Resolve "Let cypress continue after uncaught exception"

Closes #1086

See merge request !438
parents f07fca25 f88cf48a
No related branches found
No related tags found
1 merge request!438Resolve "Let cypress continue after uncaught exception"
Pipeline #32631 passed with stages
in 9 minutes and 38 seconds
...@@ -23,6 +23,7 @@ include: ...@@ -23,6 +23,7 @@ include:
- Chart.yaml - Chart.yaml
- .gitlab-ci.yml - .gitlab-ci.yml
- cypress.config.js - cypress.config.js
- cypress/**/*
stages: stages:
- lint-helm-chart - lint-helm-chart
......
# Changelog # Changelog
## [0.15.3] - 2022-11-09
* Do not fail cypress tests on uncaught javascript exception.
## [0.15.2] - 2022-10-27 ## [0.15.2] - 2022-10-27
* Allow quotes in commit message for cypress. * Allow quotes in commit message for cypress.
......
...@@ -4,7 +4,7 @@ description: | ...@@ -4,7 +4,7 @@ description: |
A helm chart for installing NextCloud and setting up ONLYOFFICE integration A helm chart for installing NextCloud and setting up ONLYOFFICE integration
name: nextcloud-onlyoffice name: nextcloud-onlyoffice
appVersion: NC-24.0.5-OO-7.2.0.204 appVersion: NC-24.0.5-OO-7.2.0.204
version: 0.15.3 version: 0.15.4
icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg
dependencies: dependencies:
# https://artifacthub.io/packages/helm/nextcloud/nextcloud # https://artifacthub.io/packages/helm/nextcloud/nextcloud
......
...@@ -18,3 +18,8 @@ ...@@ -18,3 +18,8 @@
// Alternatively you can use CommonJS syntax: // Alternatively you can use CommonJS syntax:
// require('./commands') // require('./commands')
Cypress.on('uncaught:exception', (err, runnable) => {
// Do not fail the test.
return false
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment