@bigbinary/neeto-playwright-commons 4.8.6 → 4.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +11 -1
- package/index.js +2328 -70
- package/package.json +3 -1
- package/scripts/neeto-auth/setup.sh +1 -1
package/index.d.ts
CHANGED
|
@@ -10264,12 +10264,22 @@ declare class NeetoAuthServer {
|
|
|
10264
10264
|
private targetApp;
|
|
10265
10265
|
constructor(appName: NeetoProducts);
|
|
10266
10266
|
private get serverEnv();
|
|
10267
|
-
private
|
|
10267
|
+
private get userMarkerPath();
|
|
10268
|
+
private registerAsUser;
|
|
10269
|
+
private listLiveUsers;
|
|
10270
|
+
private killPids;
|
|
10271
|
+
private waitUntilDirIsFree;
|
|
10268
10272
|
private killServerOnPort;
|
|
10273
|
+
private acquireSetupLock;
|
|
10274
|
+
private withSetupLock;
|
|
10275
|
+
private withUsersLock;
|
|
10269
10276
|
private ensureSetup;
|
|
10277
|
+
private runSetupScript;
|
|
10270
10278
|
private waitForServer;
|
|
10279
|
+
private spawnServer;
|
|
10271
10280
|
private injectEmailCaptureInitializer;
|
|
10272
10281
|
private isRunningForCurrentApp;
|
|
10282
|
+
private isServingCurrentApp;
|
|
10273
10283
|
start: () => Promise<void>;
|
|
10274
10284
|
stop: () => Promise<void>;
|
|
10275
10285
|
}
|