@codecademy/gamut-tests 5.0.10-alpha.621ed8.0 → 5.0.10-alpha.aa13ed.0
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/index.js +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _ty
|
|
|
6
6
|
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
7
7
|
import { GamutProvider, theme } from '@codecademy/gamut-styles';
|
|
8
8
|
import { setupEnzyme as setupEnzymeBase, setupRtl as setupRtlBase } from 'component-test-setup';
|
|
9
|
-
import
|
|
9
|
+
import overArgs from 'lodash/overArgs';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
|
|
12
12
|
// See https://www.notion.so/codecademy/Frontend-Unit-Tests-1cbf4e078a6647559b4583dfb6d3cb18
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-tests",
|
|
3
3
|
"description": "Shared component test setup for Gamut applications",
|
|
4
|
-
"version": "5.0.10-alpha.
|
|
4
|
+
"version": "5.0.10-alpha.aa13ed.0",
|
|
5
5
|
"author": "Codecademy Engineering <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "16.2.0",
|
|
7
|
+
"@codecademy/gamut-styles": "16.2.1-alpha.aa13ed.0",
|
|
8
8
|
"component-test-setup": "*",
|
|
9
|
-
"lodash": "4.17.
|
|
9
|
+
"lodash": "^4.17.5"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"verify": "tsc --noEmit"
|
|
34
34
|
},
|
|
35
35
|
"types": "./dist/index.d.ts",
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "f0ea764a813963257d94d8cc32937982b0860375"
|
|
37
37
|
}
|