From ccc285a29bf760e54ca5bbecde1e554e9a2657b9 Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Mon, 24 Jun 2024 09:12:02 +0200 Subject: [PATCH] Export commands and context --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 95bc928c6..cb1ff89d6 100644 --- a/index.js +++ b/index.js @@ -14,3 +14,6 @@ export const browserScripts = { 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';