@friggframework/api-module-pipedrive 0.8.11-canary.4e78202.0 → 0.8.11

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # v0.8.11 (Mon Sep 19 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Test environment setup for all modules [#49](https://github.com/friggframework/frigg/pull/49) ([@seanspeaks](https://github.com/seanspeaks))
6
+ - Test environment setup for all modules ([@seanspeaks](https://github.com/seanspeaks))
7
+ - Merge remote-tracking branch 'origin/main' into gitbook-updates [#48](https://github.com/friggframework/frigg/pull/48) ([@seanspeaks](https://github.com/seanspeaks))
8
+
9
+ #### Authors: 1
10
+
11
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
12
+
13
+ ---
14
+
1
15
  # v0.8.10 (Thu Sep 01 2022)
2
16
 
3
17
  #### 🐛 Bug Fix
package/jest-setup.js ADDED
@@ -0,0 +1,2 @@
1
+ const { globalSetup } = require('@friggframework/test-environment');
2
+ module.exports = globalSetup;
@@ -0,0 +1,2 @@
1
+ const { globalTeardown } = require('@friggframework/test-environment');
2
+ module.exports = globalTeardown;
package/jest.config.js CHANGED
@@ -2,7 +2,6 @@
2
2
  * For a detailed explanation regarding each configuration property, visit:
3
3
  * https://jestjs.io/docs/configuration
4
4
  */
5
-
6
5
  module.exports = {
7
6
  // preset: '@friggframework/test-environment',
8
7
  coverageThreshold: {
@@ -14,8 +13,8 @@ module.exports = {
14
13
  },
15
14
  },
16
15
  // A path to a module which exports an async function that is triggered once before all test suites
17
- globalSetup: '../../scripts/set-up-tests.js',
16
+ globalSetup: './jest-setup.js',
18
17
 
19
18
  // A path to a module which exports an async function that is triggered once after all test suites
20
- globalTeardown: '../../scripts/tear-down-tests.js',
19
+ globalTeardown: './jest-teardown.js',
21
20
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.11-canary.4e78202.0",
2
+ "version": "0.8.11",
3
3
  "name": "@friggframework/api-module-pipedrive",
4
4
  "prettier": "@friggframework/prettier-config",
5
5
  "description": "",
@@ -11,16 +11,16 @@
11
11
  "author": "",
12
12
  "license": "MIT",
13
13
  "devDependencies": {
14
- "@friggframework/eslint-config": "1.0.8-canary.4e78202.0",
15
- "@friggframework/test-environment": "1.1.4-canary.4e78202.0",
14
+ "@friggframework/eslint-config": "^1.0.7",
15
+ "@friggframework/test-environment": "^1.1.4",
16
16
  "eslint": "^8.22.0",
17
17
  "jest": "^28.1.3",
18
18
  "prettier": "^2.7.1",
19
19
  "sinon": "^14.0.0"
20
20
  },
21
21
  "dependencies": {
22
- "@friggframework/assertions": "1.0.5-canary.4e78202.0",
23
- "@friggframework/module-plugin": "1.0.12-canary.4e78202.0"
22
+ "@friggframework/assertions": "^1.0.4",
23
+ "@friggframework/module-plugin": "^1.0.12"
24
24
  },
25
- "gitHead": "4e7820267bf0939ff47bb1cfa032d9fa4ecdec91"
25
+ "gitHead": "f878e62429cba3a0977779e814311075fe4ef033"
26
26
  }