test: course creation flow

This commit is contained in:
Jannat Patel
2023-04-03 15:19:54 +05:30
parent 690a86bb69
commit 92a8ce6ef4
6 changed files with 218 additions and 7 deletions

View File

@@ -1,12 +1,18 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
projectId: "",
projectId: "vandxn",
adminPassword: "admin",
testUser: "ash@ipp.com",
defaultCommandTimeout: 20000,
pageLoadTimeout: 15000,
video: true,
videoUploadOnPasses: false,
retries: {
runMode: 2,
openMode: 0,
},
e2e: {},
e2e: {
baseUrl: "http://test_site_ui:8000",
},
});