Skip to content

Commit 226bae3

Browse files
committed
Remove external endpoint
1 parent 1ff72e7 commit 226bae3

3 files changed

Lines changed: 21 additions & 59 deletions

File tree

packages/tests-e2e/src/connect/scenarios/append.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { expect, test } from '@playwright/test';
55
import { LoginPage, LoginStatus } from '../models/LoginPage';
66
import { ProfileStatus } from '../models/ProfilePage';
77
import { AuthenticatorApp } from '../utils/AuthenticatorApp';
8+
import { killPlaygroundNew, spawnPlaygroundNew } from '../utils/Playground';
89
import { TestDataFactory } from '../utils/TestDataFactory';
910
import { VirtualAuthenticator } from '../utils/VirtualAuthenticator';
10-
import { killPlaygroundNew, spawnPlaygroundNew } from '../utils/Playground';
1111

1212
test.describe('append flows', () => {
1313
let server: ChildProcess;
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import type { ChildProcess } from 'node:child_process';
2+
3+
import { test } from '@playwright/test';
4+
5+
import { killPlaygroundNew, spawnPlaygroundNew } from '../utils/Playground';
6+
7+
test.describe('client-state flows', () => {
8+
let server: ChildProcess;
9+
let port: number;
10+
11+
test.beforeAll(async () => {
12+
({ server, port } = await spawnPlaygroundNew());
13+
});
14+
15+
test.afterAll(() => {
16+
killPlaygroundNew(server);
17+
});
18+
19+
test('testCookieBasedSync', async ({ page }) => {});
20+
});

playground/connect-next/app/(api)/connectTokenExternal/route.ts

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)