-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.config.js
67 lines (61 loc) · 2.38 KB
/
cypress.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const { defineConfig } = require("Cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
env: {
master_id: "goodchai0",
master_password: "qudino1234",
master_email: "[email protected]",
master_no: "7002836460",
org_name: "Testing",
//worker 1
worker1_id: "Aman_Singla",
worker1_password: "Qwerty@1234",
worker1_email: "[email protected]",
worker1_no: "9876543210",
//worker 2
worker2_id: "amans",
worker2_password: "qwerty@1234",
worker2_email: "[email protected]",
worker2_no: "1234567890",
//worker 3
worker3_id: "goodchai02",
worker3_password: "qudino1234",
worker3_email: "[email protected]",
worker3_no: "0987654321",
//Annotations
annotations_1: "This is the first annotation, highlighting the importance of clarity.",
annotations_2: "Second annotation focuses on the need for thorough research.",
annotations_3: "This annotation emphasizes collaboration and teamwork.",
annotations_4: "Fourth annotation discusses the significance of time management.",
annotations_5: "This annotation points out potential challenges and solutions.",
annotations_6: "Sixth annotation reflects on the value of feedback and improvement.",
annotations_7: "This annotation suggests innovative approaches to problem-solving.",
annotations_8: "Eighth annotation underlines the necessity of adaptability in changing environments.",
//Audio Details of Single Audio Annotation
file_name: "file1.mp3",
audio_duration: "28.14",
//Audio Details of Multiple Audio Annotation
file_multiple_task1: "file_multiple_task1.mp3",
audio_duration_file_multiple_task1: "00.00",
file_multiple_task2: "file_multiple_task2.mp3",
audio_duration_file_multiple_task2: "00.00",
file_multiple_task3: "file_multiple_task3.mp3",
audio_duration_file_multiple_task3: "00.00",
// file_multiple_task1: "file.mp3",
// audio_duration_file_multiple_task1: "00.00",
// file_multiple_task2: "file2.mp3",
// audio_duration_file_multiple_task2: "00.00",
// file_multiple_task3: "file3.mp3",
// audio_duration_file_multiple_task3: "00.00",
//No of jobs
no_of_jobs_worker1: 3,
no_of_jobs_worker2: 3,
no_of_jobs_worker3: 3,
//No of annotations
no_of_annotations: 8,
},
});