- resolve HOT v17 render loops caused by unstable settings bind - tests: pin locale to en-GB - improve accessibility - improve initial bundle size, split and lazy-load feature modules Reviewed-on: #245 Co-authored-by: s <sead@4gl.io> Co-committed-by: s <sead@4gl.io>
36 lines
997 B
TypeScript
36 lines
997 B
TypeScript
// ***********************************************************
|
|
// This example support/e2e.ts is processed and
|
|
// loaded automatically before your test files.
|
|
//
|
|
// This is a great place to put global configuration and
|
|
// behavior that modifies Cypress.
|
|
//
|
|
// You can change the location of this file or turn off
|
|
// automatically serving support files with the
|
|
// 'supportFile' configuration option.
|
|
//
|
|
// You can read more here:
|
|
// https://on.cypress.io/configuration
|
|
// ***********************************************************
|
|
|
|
// Import commands.js using ES2015 syntax:
|
|
import './commands'
|
|
|
|
// Alternatively you can use CommonJS syntax:
|
|
// require('./commands')
|
|
|
|
import 'cypress-plugin-tab'
|
|
import 'cypress-real-events'
|
|
|
|
// Pin the locale
|
|
Cypress.on('window:before:load', (win) => {
|
|
Object.defineProperty(win.navigator, 'language', {
|
|
value: 'en-GB',
|
|
configurable: true
|
|
})
|
|
Object.defineProperty(win.navigator, 'languages', {
|
|
value: ['en-GB'],
|
|
configurable: true
|
|
})
|
|
})
|