-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathindex.js
More file actions
19 lines (16 loc) · 593 Bytes
/
index.js
File metadata and controls
19 lines (16 loc) · 593 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import {
defaultScriptCategories,
allScriptCategories,
getScriptsForCategories,
findAndParseScripts
} from './lib/support/browserScript.js';
export const browserScripts = {
defaultScriptCategories,
allScriptCategories,
getScriptsForCategories,
findAndParseScripts
};
export { Engine as BrowsertimeEngine } from './lib/core/engine/index.js';
export { configure as configureLogging } from './lib/support/logging.js';
export { Commands as BrowsertimeCommands } from './lib/core/engine/commands.js';
export { Context as BrowsertimeContext } from './lib/core/engine/context.js';