12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
// SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
export const INSTANCE_URL = new URL(process.env.INSTANCE_URL)
|
|
|
|
export const USER_1 = {
|
|
username: "playwrightuser1",
|
|
email: "playwrightuser1@example.com",
|
|
password: "628acdbd8b7b3f",
|
|
name: "Playwright User1",
|
|
}
|