bt-runner 2.0.5 → 2.0.6

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/dist/generator.js CHANGED
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
5
9
  }) : (function(o, m, k, k2) {
6
10
  if (k2 === undefined) k2 = k;
7
11
  o[k2] = m[k];
package/dist/index.js CHANGED
@@ -2,7 +2,11 @@
2
2
  "use strict";
3
3
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
4
  if (k2 === undefined) k2 = k;
5
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
6
10
  }) : (function(o, m, k, k2) {
7
11
  if (k2 === undefined) k2 = k;
8
12
  o[k2] = m[k];
@@ -2,7 +2,11 @@
2
2
  "use strict";
3
3
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
4
  if (k2 === undefined) k2 = k;
5
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
6
10
  }) : (function(o, m, k, k2) {
7
11
  if (k2 === undefined) k2 = k;
8
12
  o[k2] = m[k];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bt-runner",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,20 +22,20 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "chai": "^4.3.6",
25
- "express": "^4.17.3",
25
+ "express": "^4.18.1",
26
26
  "express-http-proxy": "^1.6.3",
27
- "mocha": "^9.2.1",
28
- "nightwatch": "^2.0.7",
27
+ "mocha": "^10.0.0",
28
+ "nightwatch": "^2.3.3",
29
29
  "rimraf": "^3.0.2",
30
- "yargs": "^17.3.1"
30
+ "yargs": "^17.5.1"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/express": "^4.17.13",
34
34
  "@types/express-http-proxy": "^1.6.3",
35
- "@types/express-serve-static-core": "^4.17.28",
36
- "@types/node": "^17.0.18",
35
+ "@types/express-serve-static-core": "^4.17.30",
36
+ "@types/node": "^18.7.11",
37
37
  "@types/rimraf": "^3.0.2",
38
- "@types/yargs": "^17.0.8"
38
+ "@types/yargs": "^17.0.11"
39
39
  },
40
40
  "publishConfig": {
41
41
  "registry": "https://registry.npmjs.org"
@@ -1,36 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Mocha Tests</title>
5
- </head>
6
-
7
- <body>
8
- <div id="mocha"></div>
9
-
10
-
11
- <script>
12
- window.logs = []
13
- const oldLog = console.log
14
- console.log = function () {
15
- oldLog.apply(console, arguments)
16
- window.logs.push(Array.from(arguments))
17
- }
18
- </script>
19
-
20
-
21
- <script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
22
- <script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
23
- <script>
24
- mocha.setup("bdd")
25
- mocha.reporter("spec")
26
- </script>
27
- <script>
28
- window.TEST = {}
29
- window.TEST2 = {}
30
- </script>
31
-
32
- <script src="/test/test.js"></script>
33
-
34
- <div id="main">Test</div>
35
- </body>
36
- </html>
@@ -1,60 +0,0 @@
1
- const expect = require("chai").expect
2
-
3
- describe("Browser Mocha Tests", function () {
4
- beforeEach((client, done) => {
5
- client.url("http://localhost:7777/test-browser/index1.html")
6
- done()
7
- })
8
-
9
- after((client, done) => {
10
- client.end(() => done())
11
- })
12
-
13
- it("Should run the Mocha tests without error", (client) => {
14
- client.waitForElementVisible("#main")
15
- client.timeoutsAsyncScript(1500000).executeAsync(
16
- (_data, done) => {
17
- const localDone = typeof _data === "function" ? _data : done
18
-
19
- const mocha = window.mocha
20
-
21
- //add required test librarys in this if statement
22
- if (!mocha) {
23
- logs.push(["Required library 'mocha' not loaded. Aborting..."])
24
- localDone({ failures: 1, logs: logs })
25
- return
26
- }
27
-
28
- if (!window.TEST) {
29
- logs.push(["Required library 'TEST' not loaded. Aborting..."])
30
- localDone({ failures: 1, logs: logs })
31
- return
32
- }
33
- if (!window.TEST2) {
34
- logs.push(["Required library 'TEST2' not loaded. Aborting..."])
35
- localDone({ failures: 1, logs: logs })
36
- return
37
- }
38
-
39
- mocha.run(function (failures) {
40
- localDone({ failures: failures, logs: logs })
41
- })
42
- },
43
- [],
44
- (result) => {
45
- console.log("\n--- browser mocha output ---")
46
-
47
- if (result && result.value && result.value.logs) {
48
- for (const logs of result.value.logs) {
49
- console.log.apply(null, logs)
50
- }
51
- }
52
-
53
- console.log("--- finished browser mocha output ---")
54
-
55
- expect(result.value).to.not.be.undefined
56
- expect(result.value.failures).to.equal(0)
57
- }
58
- )
59
- })
60
- })
@@ -1 +0,0 @@
1
- {"src_folders":["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-VXDG77"],"filter":"*.test.js","webdriver":{"start_process":true,"server_path":"/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver","port":9515,"timeout_options":{"timeout":1500000}},"test_runner":{"type":"mocha","options":{"ui":"bdd","reporter":"spec"}},"test_settings":{"default":{"request_timeout_options":{"timeout":1500000},"desiredCapabilities":{"javascriptEnabled":true,"acceptSslCerts":true,"acceptInsecureCerts":true,"browserName":"chrome","goog:chromeOptions":{"w3c":true,"args":["--headless","--disable-gpu","--ignore-certificate-errors","--no-sandbox","--disable-features=NetworkService"],"binary":"/usr/bin/google-chrome"}}}},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}
@@ -1,36 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Mocha Tests</title>
5
- </head>
6
-
7
- <body>
8
- <div id="mocha"></div>
9
-
10
-
11
- <script>
12
- window.logs = []
13
- const oldLog = console.log
14
- console.log = function () {
15
- oldLog.apply(console, arguments)
16
- window.logs.push(Array.from(arguments))
17
- }
18
- </script>
19
-
20
-
21
- <script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
22
- <script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
23
- <script>
24
- mocha.setup("bdd")
25
- mocha.reporter("spec")
26
- </script>
27
- <script>
28
- window.TEST = {}
29
- window.TEST2 = {}
30
- </script>
31
-
32
- <script src="/test/test.js"></script>
33
-
34
- <div id="main">Test</div>
35
- </body>
36
- </html>
@@ -1,60 +0,0 @@
1
- const expect = require("chai").expect
2
-
3
- describe("Browser Mocha Tests", function () {
4
- beforeEach((client, done) => {
5
- client.url("http://localhost:7777/test-browser/index1.html")
6
- done()
7
- })
8
-
9
- after((client, done) => {
10
- client.end(() => done())
11
- })
12
-
13
- it("Should run the Mocha tests without error", (client) => {
14
- client.waitForElementVisible("#main")
15
- client.timeoutsAsyncScript(1500000).executeAsync(
16
- (_data, done) => {
17
- const localDone = typeof _data === "function" ? _data : done
18
-
19
- const mocha = window.mocha
20
-
21
- //add required test librarys in this if statement
22
- if (!mocha) {
23
- logs.push(["Required library 'mocha' not loaded. Aborting..."])
24
- localDone({ failures: 1, logs: logs })
25
- return
26
- }
27
-
28
- if (!window.TEST) {
29
- logs.push(["Required library 'TEST' not loaded. Aborting..."])
30
- localDone({ failures: 1, logs: logs })
31
- return
32
- }
33
- if (!window.TEST2) {
34
- logs.push(["Required library 'TEST2' not loaded. Aborting..."])
35
- localDone({ failures: 1, logs: logs })
36
- return
37
- }
38
-
39
- mocha.run(function (failures) {
40
- localDone({ failures: failures, logs: logs })
41
- })
42
- },
43
- [],
44
- (result) => {
45
- console.log("\n--- browser mocha output ---")
46
-
47
- if (result && result.value && result.value.logs) {
48
- for (const logs of result.value.logs) {
49
- console.log.apply(null, logs)
50
- }
51
- }
52
-
53
- console.log("--- finished browser mocha output ---")
54
-
55
- expect(result.value).to.not.be.undefined
56
- expect(result.value.failures).to.equal(0)
57
- }
58
- )
59
- })
60
- })
@@ -1 +0,0 @@
1
- {"src_folders":["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-prIGUG"],"filter":"*.test.js","webdriver":{"start_process":true,"server_path":"/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver","port":9515},"test_runner":{"type":"mocha","options":{"ui":"bdd","reporter":"spec"}},"test_settings":{"default":{"request_timeout_options":{"timeout":1500000},"desiredCapabilities":{"javascriptEnabled":true,"acceptSslCerts":true,"acceptInsecureCerts":true,"browserName":"chrome","goog:chromeOptions":{"w3c":true,"args":["--headless","--disable-gpu","--ignore-certificate-errors","--no-sandbox","--disable-features=NetworkService"],"binary":"/usr/bin/google-chrome"},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}}},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}