@sprucelabs/test 7.7.234 → 7.7.238

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.
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  /** Hooks up before, after, etc. */
4
4
  function hookupTestClass(target) {
5
- if (target.__isHookedUp) {
5
+ if (target.__isTestingHookedUp) {
6
6
  return;
7
7
  }
8
- target.__isHookedUp = true;
8
+ target.__isTestingHookedUp = true;
9
9
  const hooks = ['beforeAll', 'beforeEach', 'afterAll', 'afterEach'];
10
10
  hooks.forEach((hook) => {
11
11
  // Have they defined a hook
@@ -9,10 +9,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  };
10
10
  /** Hooks up before, after, etc. */
11
11
  function hookupTestClass(target) {
12
- if (target.__isHookedUp) {
12
+ if (target.__isTestingHookedUp) {
13
13
  return;
14
14
  }
15
- target.__isHookedUp = true;
15
+ target.__isTestingHookedUp = true;
16
16
  const hooks = ['beforeAll', 'beforeEach', 'afterAll', 'afterEach'];
17
17
  hooks.forEach((hook) => {
18
18
  // Have they defined a hook
package/package.json CHANGED
@@ -3,13 +3,14 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "7.7.234",
6
+ "version": "7.7.238",
7
7
  "skill": {
8
8
  "namespace": "spruce-test",
9
9
  "upgradeIgnoreList": [
10
10
  "@sprucelabs/resolve-path-aliases",
11
11
  "@sprucelabs/spruce-test-fixtures",
12
12
  "@types/node",
13
+ "chalk",
13
14
  "chokidar-cli",
14
15
  "concurrently",
15
16
  "ts-node"
@@ -75,7 +76,7 @@
75
76
  "variable-diff": "^2.0.2"
76
77
  },
77
78
  "devDependencies": {
78
- "@sprucelabs/esm-postbuild": "^1.0.290",
79
+ "@sprucelabs/esm-postbuild": "^1.0.291",
79
80
  "@sprucelabs/semantic-release": "^4.0.8",
80
81
  "@types/deep-equal": "^1.0.1",
81
82
  "@types/jest": "^27.0.3",