mirror of
https://github.com/documenso/documenso.git
synced 2025-11-17 10:11:35 +10:00
chore: implement feedback
This commit is contained in:
@ -10,9 +10,9 @@ test.use({ storageState: { cookies: [], origins: [] } });
|
|||||||
*/
|
*/
|
||||||
test.describe.configure({ mode: 'serial' });
|
test.describe.configure({ mode: 'serial' });
|
||||||
|
|
||||||
const username = 'testuser';
|
const username = process.env.E2E_TEST_AUTHENTICATE_USERNAME;
|
||||||
const email = 'test-user@documenso.com';
|
const email = process.env.E2E_TEST_AUTHENTICATE_USER_EMAIL;
|
||||||
const password = 'password';
|
const password = process.env.E2E_TEST_AUTHENTICATE_USER_PASSWORD;
|
||||||
|
|
||||||
test('user can sign up with email and password', async ({ page }: { page: Page }) => {
|
test('user can sign up with email and password', async ({ page }: { page: Page }) => {
|
||||||
await page.goto('/signup');
|
await page.goto('/signup');
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "web-tests",
|
"name": "@documenso/app-tests",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
|
"license": "to-update",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -9,7 +10,6 @@
|
|||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@playwright/test": "^1.18.1",
|
"@playwright/test": "^1.18.1",
|
||||||
"@types/node": "^20.8.2",
|
"@types/node": "^20.8.2",
|
||||||
|
|||||||
Reference in New Issue
Block a user