Skip to content

Commit 5c17bca

Browse files
authored
πŸ› Fix s4l-lite test (ITISFoundation#3539)
1 parent 29746ef commit 5c17bca

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

β€Ž.github/workflows/ci-testing-deploy.ymlβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ jobs:
143143
anything:
144144
- 'packages/**'
145145
- 'services/**'
146+
- 'tests/**'
146147
anything-py:
147148
- '**/*.py'
148149
anything-js:

β€Žtests/e2e/tutorials/sim4life-light.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const {
1313
enableDemoMode
1414
} = utils.parseCommandLineArguments(args)
1515

16-
const studyName = "S4L_light";
16+
const studyName = "sim4life-dy";
1717

1818
async function runTutorial() {
1919
const tutorial = new tutorialBase.TutorialBase(url, studyName, user, pass, newUser, enableDemoMode);

β€Žtests/e2e/tutorials/tutorialBase.jsβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,13 +238,11 @@ class TutorialBase {
238238

239239
async startSim4LifeLite() {
240240
await this.takeScreenshot("startSim4LifeLite_before");
241-
this.__responsesQueue.addResponseListener("projects?from_study=");
242241
this.__responsesQueue.addResponseListener(":open");
243242
let resp = null;
244243
try {
245244
await this.waitFor(2000);
246245
await auto.dashboardStartSim4LifeLite(this.__page);
247-
await this.__responsesQueue.waitUntilResponse("projects?from_study=");
248246
resp = await this.__responsesQueue.waitUntilResponse(":open");
249247
const studyId = resp["data"]["uuid"];
250248
console.log("Study ID:", studyId);

0 commit comments

Comments
Β (0)