1import { mkCoreAuthTests, mkGameRoomTests } from '../../deployF/testsF/authCoreTestsAI.mts'2import { runTestsWithProgress } from '../../deployF/testsF/runTestsHelperAI.mts'4// Core auth tests with gamesapp mutation name5const 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})21}