import { Cookie } from "playwright"; import { App } from "../app"; type User = { email: string; password: string; }; type AuthCache = Array; const test = { name: "Test", userAuthEnvVars: { email: "ZYGON_TEST_EMAIL", password: "ZYGON_TEST_PASSWORD", }, login: async () => {}, cacheAuth: async (_, context) => { return context.cookies(); }, restoreAuthCache: async () => {}, listCollaborators: async () => { return [ { fullName: "Leslie Harvey", email: "leslie@botsford.com" }, { fullName: "Claude Rippin-Fadel", email: "claude@botsford.com" }, { fullName: "Orville Douglas", email: "orville@botsford.com" }, { fullName: "Elsa Konopelski", email: "elsa@botsford.com" }, ]; }, addCollaborator: async () => {}, removeCollaborator: async () => {}, } satisfies App; export default test;