@rimori/playwright-testing 0.3.33 → 0.3.34
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/core/RimoriE2ETestEnvironment.js +2 -2
- package/dist/harness/dist2.js +1 -1
- package/dist/harness/dist3.js +4 -4
- package/dist/harness/hostInit.js +1 -1
- package/dist/harness/localSharedImportMap.js +1 -1
- package/dist/helpers/e2e/onboarding.d.ts +7 -10
- package/dist/helpers/e2e/onboarding.js +42 -47
- package/package.json +3 -1
|
@@ -44,9 +44,9 @@ class RimoriE2ETestEnvironment {
|
|
|
44
44
|
await this.preflightLocal();
|
|
45
45
|
const onboardingData = {
|
|
46
46
|
learning_reason: onboarding?.learning_reason ?? 'work',
|
|
47
|
-
target_country: onboarding?.target_country ?? 'SE',
|
|
48
|
-
target_city: onboarding?.target_city ?? 'Malmö',
|
|
49
47
|
interests: onboarding?.interests ?? 'Travel, cooking, and music',
|
|
48
|
+
profession: onboarding?.profession ?? 'Software developer who wants to learn Swedish for daily life.',
|
|
49
|
+
proud_of: onboarding?.proud_of ?? 'Having a conversation with Swedish colleagues without a dictionary.',
|
|
50
50
|
};
|
|
51
51
|
// Step 1: Create both test users (temp + persist) via API
|
|
52
52
|
const { temp, persist } = await this.createTestUserViaApi();
|