🌳
pt0/gamesapp/testsF/authGqlAI.mjs
4// Core auth tests with gamesapp mutation name
5const coreAuthTests = mkCoreAuthTests({
6 reqEmailLoginMutationName: 'gmReqGamesEmailLogin',
7})
9// Game room tests (no faucet needed in gamesapp - no billing)
10const gameRoomTests = mkGameRoomTests()
12export const runAuthGqlSuite = async ({baseUrl, singleTestName}) => {
13 const ctx = {}
15 const tests = [
16 ...coreAuthTests(ctx, baseUrl),
17 ...gameRoomTests(ctx, baseUrl),
18 ]
20 return runTestsWithProgress({tests, suiteName: 'auth', singleTestName})