add: full multi-tenancy control

This commit is contained in:
Cauê Faleiros
2026-02-02 15:31:15 -03:00
commit c6ec92802b
1711 changed files with 258106 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
import { defineConfig, devices } from "@playwright/test";
import dotenv from "dotenv";
import path from "path";
import { fileURLToPath } from "url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
export const TESTS_ROOT_PATH = __dirname;
export const STATE_DIR_PATH = `${ TESTS_ROOT_PATH }/.state/`;
export const ADMIN_AUTH_STATE_PATH = `${ STATE_DIR_PATH }/admin-auth.json`;
dotenv.config({ path: path.resolve(__dirname, "../../../../../.env") });
export default defineConfig({
testDir: "./tests",
timeout: 30 * 1000,
expect: { timeout: 20 * 1000 },
outputDir: "./test-results",
fullyParallel: false,
workers: 1,
forbidOnly: !!process.env.CI,
retries: 0,
reportSlowTests: null,
reporter: [
[
"html",
{
outputFolder: "./playwright-report",
},
],
],
use: {
baseURL: `${process.env.APP_URL}/`.replace(/\/+$/, "/"),
screenshot: { mode: "only-on-failure", fullPage: true },
video: "retain-on-failure",
trace: "retain-on-failure",
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
});