ACTIVEPIECES/packages/tests-e2e/tests/sign-up.spec.ts
rohit cd823a2d9e
Some checks failed
Crowdin Action / synchronize-with-crowdin (push) Has been cancelled
Release Pieces / Release-Pieces (push) Has been cancelled
automaton layer
2025-07-05 23:59:03 +05:30

13 lines
382 B
TypeScript

import { test } from '@playwright/test';
import { authentication } from '../page/authentication';
import { faker } from '@faker-js/faker'
import { globalConfig } from '../config';
test('Sign Up New Account', async ({ page }) => {
const email = faker.internet.email();
await authentication.signUp(page, {
email: email,
password: globalConfig.password
})
});