📐2. Cypress Kurulum
// node.js mevcut mu kontrolu
node -vnpm init --ynpm install cypress --save-devMobile ve Desktop ayrımı
"scripts": {
"cy:mobile": "cypress open --env isMobile=true --config viewportWidth=375,viewportHeight=812",
"cy:desktop": "cypress open --env isMobile=false --config viewportWidth=1920,viewportHeight=1080"
},module.exports = defineConfig({
video: false,
screenshotOnRunFailure: true,
e2e: {
baseUrl: "http://localhost:3000",
setupNodeEvents(on, config) {
let userAgentValue = config.env.isMobile ? userAgent.mobile : userAgent.desktop
on("before:browser:launch", (browser = {}, launchOptions) => {
launchOptions.args.push(`--user-agent=${userAgentValue}`);
return launchOptions;
});
},
},
});Last updated