automation_model 1.0.0 → 1.0.2
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/bin/auto_page.js +1 -1
- package/bin/browser_manager.js +1 -1
- package/bin/environment.js +1 -1
- package/bin/index.js +6 -0
- package/bin/init_browser.js +3 -3
- package/bin/test_context.js +1 -1
- package/package.json +2 -2
package/bin/auto_page.js
CHANGED
package/bin/browser_manager.js
CHANGED
package/bin/environment.js
CHANGED
package/bin/index.js
ADDED
package/bin/init_browser.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
|
-
import Environment from "./environment.js";
|
|
3
|
-
import browserManager from "./browser_manager.js";
|
|
4
|
-
import TestContext from "./test_context.js";
|
|
2
|
+
import { Environment } from "./environment.js";
|
|
3
|
+
import { browserManager } from "./browser_manager.js";
|
|
4
|
+
import { TestContext } from "./test_context.js";
|
|
5
5
|
import { StableBrowser } from "./stable_browser.js";
|
|
6
6
|
|
|
7
7
|
let environment = null;
|
package/bin/test_context.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "automation_model",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"lib": "lib"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"pack": "mkdir build && mkdir build/bin && cp ./src/auto_page.js ./build/bin/auto_page.js && cp ./src/environment.js ./build/bin/environment.js && cp ./src/browser_manager.js ./build/bin/browser_manager.js && cp ./src/test_context.js ./build/bin/test_context.js && cp ./src/init_browser.js ./build/bin/init_browser.js && cp ./src/stable_browser.js ./build/bin/stable_browser.js && cp ./package.json ./build/package.json",
|
|
11
|
+
"pack": "mkdir build && mkdir build/bin && cp ./src/auto_page.js ./build/bin/auto_page.js && cp ./src/environment.js ./build/bin/environment.js && cp ./src/browser_manager.js ./build/bin/browser_manager.js && cp ./src/test_context.js ./build/bin/test_context.js && cp ./src/init_browser.js ./build/bin/init_browser.js && cp ./src/stable_browser.js ./build/bin/stable_browser.js && cp ./src/index.js ./build/bin/index.js && cp ./package.json ./build/package.json",
|
|
12
12
|
"clean": "rm -rf ./build",
|
|
13
13
|
"build": "npm run clean && npm run pack"
|
|
14
14
|
},
|