enso/app/gui/integration-test/dashboard/signUp.spec.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
TypeScript
Raw Normal View History

/** @file Test the login flow. */
import * as test from '@playwright/test'
import { INVALID_PASSWORD, mockAll, TEXT, VALID_EMAIL, VALID_PASSWORD } from './actions'
// =============
// === Tests ===
// =============
// Reset storage state for this file to avoid being authenticated
test.test.use({ storageState: { cookies: [], origins: [] } })
test.test('sign up without organization id', ({ page }) =>
mockAll({ page })
.goToPage.register()
.registerThatShouldFail('invalid email', VALID_PASSWORD, VALID_PASSWORD, {
assert: {
emailError: TEXT.invalidEmailValidationError,
passwordError: null,
confirmPasswordError: null,
formError: null,
},
})
.registerThatShouldFail(VALID_EMAIL, INVALID_PASSWORD, INVALID_PASSWORD, {
assert: {
emailError: null,
passwordError: TEXT.passwordValidationError,
confirmPasswordError: null,
formError: null,
},
})
.registerThatShouldFail(VALID_EMAIL, VALID_PASSWORD, INVALID_PASSWORD, {
assert: {
emailError: null,
passwordError: null,
confirmPasswordError: TEXT.passwordMismatchError,
formError: null,
},
})
.register(),
)