Skip to content

Commit

Permalink
chore: DO NOT MERGE IT
Browse files Browse the repository at this point in the history
  • Loading branch information
DudaGod committed Dec 28, 2023
1 parent cf619df commit 94fb291
Show file tree
Hide file tree
Showing 871 changed files with 20,335 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_store
.DS_Store
build

.idea
.vscode
Expand Down
53 changes: 53 additions & 0 deletions build/base-hermione.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
export = BaseHermione;
declare class BaseHermione extends AsyncEmitter {
static create(config: any): import("./base-hermione");
constructor(config: any);
_interceptors: any[];
_config: Config;
_init(): Promise<any>;
get config(): Config;
get events(): {
NEW_WORKER_PROCESS: string;
SUITE_BEGIN: string;
SUITE_END: string;
TEST_BEGIN: string;
TEST_END: string;
TEST_PASS: string;
TEST_FAIL: string;
TEST_PENDING: string;
RETRY: string;
} & {
CLI: string;
BEGIN: string;
END: string;
BEFORE_FILE_READ: string;
AFTER_FILE_READ: string;
AFTER_TESTS_READ: string;
INFO: string;
WARNING: string;
ERROR: string;
} & {
INIT: string;
RUNNER_START: string;
RUNNER_END: string;
SESSION_START: string;
SESSION_END: string;
EXIT: string;
} & {
INIT: string;
BEFORE_FILE_READ: string;
AFTER_FILE_READ: string;
AFTER_TESTS_READ: string;
TEST_FAIL: string;
ERROR: string;
NEW_BROWSER: string;
UPDATE_REFERENCE: string;
};
get errors(): typeof Errors;
intercept(event: any, handler: any): import("./base-hermione");
isWorker(): void;
_loadPlugins(): void;
}
import AsyncEmitter = require("./events/async-emitter");
import Config = require("./config");
import Errors = require("./errors");
47 changes: 47 additions & 0 deletions build/base-hermione.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/base-hermione.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions build/browser-pool/basic-pool.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export = BasicPool;
declare class BasicPool extends Pool {
static create(config: any, emitter: any): import("./basic-pool");
constructor(config: any, emitter: any);
_config: any;
_emitter: any;
log: any;
_activeSessions: {};
getBrowser(id: any, opts?: {}): Promise<import("../browser/browser")>;
freeBrowser(browser: any): Promise<void>;
_emit(event: any, browser: any): any;
_cancelled: boolean | undefined;
}
import Pool = require("./pool");
62 changes: 62 additions & 0 deletions build/browser-pool/basic-pool.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/browser-pool/basic-pool.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions build/browser-pool/caching-pool.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
export = CachingPool;
declare class CachingPool extends Pool {
/**
* @constructor
* @extends BasicPool
* @param {BasicPool} underlyingPool
*/
constructor(underlyingPool: BasicPool, config: any);
log: any;
underlyingPool: BasicPool;
_caches: {};
_config: any;
_getCacheFor(id: any, version: any): any;
getBrowser(id: any, opts?: {}): any;
_initPool(browserId: any, version: any): void;
/**
* Free browser
* @param {Browser} browser session instance
* @param {Object} [options] - advanced options
* @param {Boolean} [options.force] - if `true` than browser should
* not be cached
* @returns {Promise<undefined>}
*/
freeBrowser(browser: Browser, options?: {
force?: boolean | undefined;
} | undefined): Promise<undefined>;
}
import Pool = require("./pool");
90 changes: 90 additions & 0 deletions build/browser-pool/caching-pool.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/browser-pool/caching-pool.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions build/browser-pool/cancelled-error.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export = CancelledError;
declare class CancelledError extends Error {
constructor();
}
10 changes: 10 additions & 0 deletions build/browser-pool/cancelled-error.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/browser-pool/cancelled-error.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions build/browser-pool/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export function create(config: any, emitter: any): BasicPool;
import BasicPool = require("./basic-pool");
19 changes: 19 additions & 0 deletions build/browser-pool/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/browser-pool/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 94fb291

Please sign in to comment.