quick-helicopter-52253
07/19/2022, 7:57 AMblockHosts
working in Cypress 10.3.0 - am I handling something wrong?
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
baseUrl: 'http://X.myshopify.com',
},
env: {
SHOPIFY_THEME_ID: 'X',
},
blockHosts: [
'*.google-analytics.com',
'*google-analytics.com',
'*.ipgeolocation.io',
'*ipgeolocation.io',
]
});
quick-helicopter-52253
07/19/2022, 8:21 AM