mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-04-26 07:05:32 +00:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
|
|
import './commands'
|
|
import '@4tw/cypress-drag-drop'
|
|
|
|
// see https://github.com/cypress-io/cypress/issues/702#issuecomment-587127275
|
|
Cypress.on('window:before:load', (win) => {
|
|
// disable service workers
|
|
// @ts-ignore
|
|
delete win.navigator.__proto__.ServiceWorker
|
|
})
|