touchstudy-core 0.1.64 → 0.1.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/tests/performances/do-exam-session.d.ts +18 -0
- package/dist/tests/performances/do-exam.d.ts +15 -0
- package/dist/tests/performances/join-exam.d.ts +13 -0
- package/dist/tests/performances/login.d.ts +20 -0
- package/package.json +1 -1
@@ -0,0 +1,18 @@
|
|
1
|
+
export function setup(): {
|
2
|
+
code: string;
|
3
|
+
teacherAuthorizeHeaders: {
|
4
|
+
Authorization: string;
|
5
|
+
} & {
|
6
|
+
"Academy-Headers": string;
|
7
|
+
"Content-Type": string;
|
8
|
+
"Accept-Language": string;
|
9
|
+
};
|
10
|
+
};
|
11
|
+
export function teardown(data: any): void;
|
12
|
+
export default function _default(data: any): void;
|
13
|
+
export namespace options {
|
14
|
+
export const vus: number;
|
15
|
+
export const iterations: number;
|
16
|
+
}
|
17
|
+
declare const AcademyHeaders: "Academy-Headers";
|
18
|
+
export {};
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export function teacherScenario(): void;
|
2
|
+
export function studentsScenario(): void;
|
3
|
+
export function setup(): {
|
4
|
+
abc: string;
|
5
|
+
};
|
6
|
+
export default function _default(data: any): void;
|
7
|
+
export namespace options {
|
8
|
+
export namespace scenarios {
|
9
|
+
export namespace students_scenario {
|
10
|
+
export const executor: string;
|
11
|
+
export const vus: number;
|
12
|
+
export const iterations: number;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
export function teacherGetOrCreateExamSession(): any;
|
2
|
+
export function studentsScenario(code: any): void;
|
3
|
+
export function setup(): any;
|
4
|
+
export default function _default(data: any): void;
|
5
|
+
export namespace options {
|
6
|
+
export namespace scenarios {
|
7
|
+
export namespace students_scenario {
|
8
|
+
export const executor: string;
|
9
|
+
export const vus: number;
|
10
|
+
export const iterations: number;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
export function teacher_scenario(): void;
|
2
|
+
export function students_scenario(): void;
|
3
|
+
export default function _default(): void;
|
4
|
+
export namespace options {
|
5
|
+
export namespace scenarios {
|
6
|
+
export namespace teacher_scenario {
|
7
|
+
export const executor: string;
|
8
|
+
export const vus: number;
|
9
|
+
export const iterations: number;
|
10
|
+
}
|
11
|
+
export namespace students_scenario {
|
12
|
+
const executor_1: string;
|
13
|
+
export { executor_1 as executor };
|
14
|
+
const vus_1: number;
|
15
|
+
export { vus_1 as vus };
|
16
|
+
const iterations_1: number;
|
17
|
+
export { iterations_1 as iterations };
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|