aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2018-05-31 16:11:04 +0200
committerSonarTech <sonartech@sonarsource.com>2018-06-01 20:20:47 +0200
commit65724b3c1a445841184f7bb3aaab0fd8092f0764 (patch)
tree6f2a9c47017a0d7e1b5b2a1860b667e862433959
parentfa9d4c659b1ecfcc3cb7b76994282230babcd3e8 (diff)
downloadsonarqube-65724b3c1a445841184f7bb3aaab0fd8092f0764.tar.gz
sonarqube-65724b3c1a445841184f7bb3aaab0fd8092f0764.zip
Update to Jest 23
-rw-r--r--server/sonar-web/package.json8
-rw-r--r--server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap3
-rw-r--r--server/sonar-web/src/main/js/apps/coding-rules/components/__tests__/__snapshots__/RuleDetailsMeta-test.tsx.snap1
-rw-r--r--server/sonar-web/src/main/js/apps/organizations/components/forms/__tests__/__snapshots__/AddMemberForm-test.js.snap1
-rw-r--r--server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/LanguagesFilter-test.tsx.snap3
-rw-r--r--server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/TagsFilter-test.tsx.snap4
-rw-r--r--server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewOrganizationForm-test.js.snap12
-rw-r--r--server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewProjectForm-test.js.snap12
-rw-r--r--server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineCoverage-test.tsx.snap1
-rw-r--r--server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineNumber-test.tsx.snap1
-rw-r--r--server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueCommentAction-test.js.snap8
-rw-r--r--server/sonar-web/yarn.lock448
12 files changed, 336 insertions, 166 deletions
diff --git a/server/sonar-web/package.json b/server/sonar-web/package.json
index b199b8a9565..02b243b8aea 100644
--- a/server/sonar-web/package.json
+++ b/server/sonar-web/package.json
@@ -60,7 +60,7 @@
"@types/react-virtualized": "9.18.3",
"autoprefixer": "8.4.1",
"babel-core": "6.26.3",
- "babel-jest": "22.4.3",
+ "babel-jest": "23.0.1",
"babel-loader": "7.1.4",
"babel-plugin-dynamic-import-node": "1.2.0",
"babel-plugin-lodash": "3.3.2",
@@ -78,7 +78,7 @@
"css-loader": "0.28.11",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
- "enzyme-to-json": "3.3.3",
+ "enzyme-to-json": "3.3.4",
"escape-string-regexp": "1.0.5",
"eslint": "4.19.1",
"eslint-config-sonarqube": "0.1.0",
@@ -92,7 +92,7 @@
"glob": "7.1.2",
"glob-promise": "3.4.0",
"html-webpack-plugin": "3.2.0",
- "jest": "22.4.3",
+ "jest": "23.1.0",
"lint-staged": "4.3.0",
"lodash-webpack-plugin": "0.11.5",
"mini-css-extract-plugin": "0.4.0",
@@ -107,7 +107,7 @@
"remark": "9.0.0",
"remark-react": "4.0.3",
"style-loader": "0.21.0",
- "ts-jest": "22.4.5",
+ "ts-jest": "22.4.6",
"ts-loader": "4.3.0",
"typescript": "2.8.3",
"typescript-eslint-parser": "15.0.0",
diff --git a/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap b/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap
index 214b4a018d1..637e7d69a8e 100644
--- a/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap
+++ b/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap
@@ -25,7 +25,6 @@ exports[`renders main branch 1`] = `
},
]
}
- canAdmin={undefined}
component={Object {}}
currentBranchLike={
Object {
@@ -110,7 +109,6 @@ exports[`renders pull request 1`] = `
},
]
}
- canAdmin={undefined}
component={Object {}}
currentBranchLike={
Object {
@@ -212,7 +210,6 @@ exports[`renders short-living branch 1`] = `
},
]
}
- canAdmin={undefined}
component={Object {}}
currentBranchLike={
Object {
diff --git a/server/sonar-web/src/main/js/apps/coding-rules/components/__tests__/__snapshots__/RuleDetailsMeta-test.tsx.snap b/server/sonar-web/src/main/js/apps/coding-rules/components/__tests__/__snapshots__/RuleDetailsMeta-test.tsx.snap
index 2f6ac55b176..dff15818a3b 100644
--- a/server/sonar-web/src/main/js/apps/coding-rules/components/__tests__/__snapshots__/RuleDetailsMeta-test.tsx.snap
+++ b/server/sonar-web/src/main/js/apps/coding-rules/components/__tests__/__snapshots__/RuleDetailsMeta-test.tsx.snap
@@ -293,7 +293,6 @@ exports[`should edit tags 1`] = `
closeOnClickOutside={true}
overlay={
<RuleDetailsTagsPopup
- organization={undefined}
setTags={[MockFunction]}
sysTags={Array []}
tags={Array []}
diff --git a/server/sonar-web/src/main/js/apps/organizations/components/forms/__tests__/__snapshots__/AddMemberForm-test.js.snap b/server/sonar-web/src/main/js/apps/organizations/components/forms/__tests__/__snapshots__/AddMemberForm-test.js.snap
index 643417eae4a..d480a393f5b 100644
--- a/server/sonar-web/src/main/js/apps/organizations/components/forms/__tests__/__snapshots__/AddMemberForm-test.js.snap
+++ b/server/sonar-web/src/main/js/apps/organizations/components/forms/__tests__/__snapshots__/AddMemberForm-test.js.snap
@@ -48,7 +48,6 @@ Array [
}
handleValueChange={[Function]}
searchUsers={[Function]}
- selectedUser={undefined}
/>
</div>
</div>
diff --git a/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/LanguagesFilter-test.tsx.snap b/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/LanguagesFilter-test.tsx.snap
index bbaf619be4f..2ee2995300e 100644
--- a/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/LanguagesFilter-test.tsx.snap
+++ b/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/LanguagesFilter-test.tsx.snap
@@ -57,7 +57,6 @@ exports[`should render maximum 10 languages in the searchbox results 1`] = `
},
]
}
- organization={undefined}
property="languages"
query={
Object {
@@ -131,7 +130,6 @@ exports[`should render the languages facet with the selected languages 1`] = `
},
]
}
- organization={undefined}
property="languages"
query={
Object {
@@ -325,7 +323,6 @@ exports[`should render the languages without the ones in the facet 1`] = `
},
]
}
- organization={undefined}
property="languages"
query={
Object {
diff --git a/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/TagsFilter-test.tsx.snap b/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/TagsFilter-test.tsx.snap
index 5bec18a1ba2..c53ee03991a 100644
--- a/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/TagsFilter-test.tsx.snap
+++ b/server/sonar-web/src/main/js/apps/projects/filters/__tests__/__snapshots__/TagsFilter-test.tsx.snap
@@ -60,7 +60,6 @@ exports[`should render maximum 10 tags in the searchbox results 1`] = `
},
]
}
- organization={undefined}
property="tags"
query={
Object {
@@ -122,7 +121,6 @@ exports[`should render the tags facet with the selected tags 1`] = `
onOpen={[Function]}
onQueryChange={[MockFunction]}
options={Array []}
- organization={undefined}
property="tags"
query={
Object {
@@ -274,7 +272,6 @@ exports[`should render the tags without the ones in the facet 1`] = `
onOpen={[Function]}
onQueryChange={[MockFunction]}
options={Array []}
- organization={undefined}
property="tags"
query={
Object {
@@ -338,7 +335,6 @@ exports[`should render the tags without the ones in the facet 2`] = `
},
]
}
- organization={undefined}
property="tags"
query={
Object {
diff --git a/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewOrganizationForm-test.js.snap b/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewOrganizationForm-test.js.snap
index a7f34e63364..eae8fcdb833 100644
--- a/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewOrganizationForm-test.js.snap
+++ b/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewOrganizationForm-test.js.snap
@@ -89,6 +89,12 @@ exports[`creates new organization 3`] = `
"foo",
],
],
+ "results": Array [
+ Object {
+ "isThrow": false,
+ "value": undefined,
+ },
+ ],
}
}
>
@@ -210,6 +216,12 @@ exports[`deletes organization 3`] = `
"calls": Array [
Array [],
],
+ "results": Array [
+ Object {
+ "isThrow": false,
+ "value": undefined,
+ },
+ ],
}
}
onDone={[MockFunction]}
diff --git a/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewProjectForm-test.js.snap b/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewProjectForm-test.js.snap
index f2c1036adeb..f6722a21bf6 100644
--- a/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewProjectForm-test.js.snap
+++ b/server/sonar-web/src/main/js/apps/tutorials/onboarding/__tests__/__snapshots__/NewProjectForm-test.js.snap
@@ -105,6 +105,12 @@ exports[`creates new project 3`] = `
"foo",
],
],
+ "results": Array [
+ Object {
+ "isThrow": false,
+ "value": undefined,
+ },
+ ],
}
}
>
@@ -253,6 +259,12 @@ exports[`deletes project 3`] = `
"calls": Array [
Array [],
],
+ "results": Array [
+ Object {
+ "isThrow": false,
+ "value": undefined,
+ },
+ ],
}
}
onDone={[MockFunction]}
diff --git a/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineCoverage-test.tsx.snap b/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineCoverage-test.tsx.snap
index e715b7ded52..fc47e783cac 100644
--- a/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineCoverage-test.tsx.snap
+++ b/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineCoverage-test.tsx.snap
@@ -13,7 +13,6 @@ exports[`render covered line 1`] = `
open={false}
overlay={
<CoveragePopup
- branchLike={undefined}
componentKey="foo"
line={
Object {
diff --git a/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineNumber-test.tsx.snap b/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineNumber-test.tsx.snap
index f5d3c9deff3..985f1f51937 100644
--- a/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineNumber-test.tsx.snap
+++ b/server/sonar-web/src/main/js/components/SourceViewer/components/__tests__/__snapshots__/LineNumber-test.tsx.snap
@@ -19,7 +19,6 @@ exports[`render line 3 1`] = `
open={false}
overlay={
<LineOptionsPopup
- branchLike={undefined}
componentKey="foo"
line={
Object {
diff --git a/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueCommentAction-test.js.snap b/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueCommentAction-test.js.snap
index 3c62307690e..948279ebf57 100644
--- a/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueCommentAction-test.js.snap
+++ b/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueCommentAction-test.js.snap
@@ -10,12 +10,17 @@ exports[`should open the popup when the button is clicked 1`] = `
overlay={
<CommentPopup
onComment={[Function]}
- placeholder={undefined}
toggleComment={
[MockFunction] {
"calls": Array [
Array [],
],
+ "results": Array [
+ Object {
+ "isThrow": false,
+ "value": undefined,
+ },
+ ],
}
}
/>
@@ -45,7 +50,6 @@ exports[`should render correctly 1`] = `
overlay={
<CommentPopup
onComment={[Function]}
- placeholder={undefined}
toggleComment={[MockFunction]}
/>
}
diff --git a/server/sonar-web/yarn.lock b/server/sonar-web/yarn.lock
index 45c78e2cf5c..91927389191 100644
--- a/server/sonar-web/yarn.lock
+++ b/server/sonar-web/yarn.lock
@@ -810,12 +810,12 @@ babel-helpers@^6.24.1:
babel-runtime "^6.22.0"
babel-template "^6.24.1"
-babel-jest@22.4.3, babel-jest@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.3.tgz#4b7a0b6041691bbd422ab49b3b73654a49a6627a"
+babel-jest@23.0.1, babel-jest@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6"
dependencies:
- babel-plugin-istanbul "^4.1.5"
- babel-preset-jest "^22.4.3"
+ babel-plugin-istanbul "^4.1.6"
+ babel-preset-jest "^23.0.1"
babel-loader@7.1.4:
version "7.1.4"
@@ -843,7 +843,7 @@ babel-plugin-dynamic-import-node@1.2.0:
dependencies:
babel-plugin-syntax-dynamic-import "^6.18.0"
-babel-plugin-istanbul@^4.1.5, babel-plugin-istanbul@^4.1.6:
+babel-plugin-istanbul@^4.1.6:
version "4.1.6"
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
dependencies:
@@ -856,6 +856,10 @@ babel-plugin-jest-hoist@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.3.tgz#7d8bcccadc2667f96a0dcc6afe1891875ee6c14a"
+babel-plugin-jest-hoist@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148"
+
babel-plugin-lodash@3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.2.tgz#da3a5b49ba27447f54463f6c4fa81396ccdd463f"
@@ -1208,6 +1212,13 @@ babel-preset-jest@^22.4.3:
babel-plugin-jest-hoist "^22.4.3"
babel-plugin-syntax-object-rest-spread "^6.13.0"
+babel-preset-jest@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198"
+ dependencies:
+ babel-plugin-jest-hoist "^23.0.1"
+ babel-plugin-syntax-object-rest-spread "^6.13.0"
+
babel-preset-react@^6.22.0:
version "6.24.1"
resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
@@ -1840,14 +1851,6 @@ cliui@^2.1.0:
right-align "^0.1.1"
wordwrap "0.0.2"
-cliui@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
- dependencies:
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
- wrap-ansi "^2.0.0"
-
cliui@^4.0.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
@@ -1953,6 +1956,10 @@ commondir@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+compare-versions@^3.1.0:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.2.1.tgz#a49eb7689d4caaf0b6db5220173fd279614000f7"
+
component-emitter@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
@@ -2761,9 +2768,9 @@ enzyme-adapter-utils@^1.3.0:
object.assign "^4.0.4"
prop-types "^15.6.0"
-enzyme-to-json@3.3.3:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.3.3.tgz#ede45938fb309cd87ebd4386f60c754525515a07"
+enzyme-to-json@3.3.4:
+ version "3.3.4"
+ resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.3.4.tgz#67c6040e931182f183418af2eb9f4323258aa77f"
dependencies:
lodash "^4.17.4"
@@ -3101,6 +3108,17 @@ expect@^22.4.3:
jest-message-util "^22.4.3"
jest-regex-util "^22.4.3"
+expect@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-23.1.0.tgz#bfdfd57a2a20170d875999ee9787cc71f01c205f"
+ dependencies:
+ ansi-styles "^3.2.0"
+ jest-diff "^23.0.1"
+ jest-get-type "^22.1.0"
+ jest-matcher-utils "^23.0.1"
+ jest-message-util "^23.1.0"
+ jest-regex-util "^23.0.0"
+
expose-loader@0.7.5:
version "0.7.5"
resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-0.7.5.tgz#e29ea2d9aeeed3254a3faa1b35f502db9f9c3f6f"
@@ -4476,33 +4494,34 @@ isstream@~0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
-istanbul-api@^1.1.14:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620"
+istanbul-api@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954"
dependencies:
async "^2.1.4"
+ compare-versions "^3.1.0"
fileset "^2.0.2"
- istanbul-lib-coverage "^1.1.1"
- istanbul-lib-hook "^1.1.0"
- istanbul-lib-instrument "^1.9.1"
- istanbul-lib-report "^1.1.2"
- istanbul-lib-source-maps "^1.2.2"
- istanbul-reports "^1.1.3"
+ istanbul-lib-coverage "^1.2.0"
+ istanbul-lib-hook "^1.2.0"
+ istanbul-lib-instrument "^1.10.1"
+ istanbul-lib-report "^1.1.4"
+ istanbul-lib-source-maps "^1.2.4"
+ istanbul-reports "^1.3.0"
js-yaml "^3.7.0"
mkdirp "^0.5.1"
once "^1.4.0"
-istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.2.0:
+istanbul-lib-coverage@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341"
-istanbul-lib-hook@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b"
+istanbul-lib-hook@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c"
dependencies:
append-transform "^0.4.0"
-istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.8.0, istanbul-lib-instrument@^1.9.1:
+istanbul-lib-instrument@^1.10.1:
version "1.10.1"
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b"
dependencies:
@@ -4514,40 +4533,40 @@ istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.8.0, istanbul-lib-in
istanbul-lib-coverage "^1.2.0"
semver "^5.3.0"
-istanbul-lib-report@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425"
+istanbul-lib-report@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5"
dependencies:
- istanbul-lib-coverage "^1.1.1"
+ istanbul-lib-coverage "^1.2.0"
mkdirp "^0.5.1"
path-parse "^1.0.5"
supports-color "^3.1.2"
-istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c"
+istanbul-lib-source-maps@^1.2.4:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1"
dependencies:
debug "^3.1.0"
- istanbul-lib-coverage "^1.1.1"
+ istanbul-lib-coverage "^1.2.0"
mkdirp "^0.5.1"
rimraf "^2.6.1"
source-map "^0.5.3"
-istanbul-reports@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10"
+istanbul-reports@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554"
dependencies:
handlebars "^4.0.3"
-jest-changed-files@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2"
+jest-changed-files@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c"
dependencies:
throat "^4.0.0"
-jest-cli@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.3.tgz#bf16c4a5fb7edc3fa5b9bb7819e34139e88a72c7"
+jest-cli@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.1.0.tgz#eb8bdd4ce0d15250892e31ad9b69bc99d2a8f6bf"
dependencies:
ansi-escapes "^3.0.0"
chalk "^2.0.1"
@@ -4556,24 +4575,25 @@ jest-cli@^22.4.3:
graceful-fs "^4.1.11"
import-local "^1.0.0"
is-ci "^1.0.10"
- istanbul-api "^1.1.14"
- istanbul-lib-coverage "^1.1.1"
- istanbul-lib-instrument "^1.8.0"
- istanbul-lib-source-maps "^1.2.1"
- jest-changed-files "^22.4.3"
- jest-config "^22.4.3"
- jest-environment-jsdom "^22.4.3"
- jest-get-type "^22.4.3"
- jest-haste-map "^22.4.3"
- jest-message-util "^22.4.3"
- jest-regex-util "^22.4.3"
- jest-resolve-dependencies "^22.4.3"
- jest-runner "^22.4.3"
- jest-runtime "^22.4.3"
- jest-snapshot "^22.4.3"
- jest-util "^22.4.3"
- jest-validate "^22.4.3"
- jest-worker "^22.4.3"
+ istanbul-api "^1.3.1"
+ istanbul-lib-coverage "^1.2.0"
+ istanbul-lib-instrument "^1.10.1"
+ istanbul-lib-source-maps "^1.2.4"
+ jest-changed-files "^23.0.1"
+ jest-config "^23.1.0"
+ jest-environment-jsdom "^23.1.0"
+ jest-get-type "^22.1.0"
+ jest-haste-map "^23.1.0"
+ jest-message-util "^23.1.0"
+ jest-regex-util "^23.0.0"
+ jest-resolve-dependencies "^23.0.1"
+ jest-runner "^23.1.0"
+ jest-runtime "^23.1.0"
+ jest-snapshot "^23.0.1"
+ jest-util "^23.1.0"
+ jest-validate "^23.0.1"
+ jest-watcher "^23.1.0"
+ jest-worker "^23.0.1"
micromatch "^2.3.11"
node-notifier "^5.2.1"
realpath-native "^1.0.0"
@@ -4582,7 +4602,7 @@ jest-cli@^22.4.3:
string-length "^2.0.0"
strip-ansi "^4.0.0"
which "^1.2.12"
- yargs "^10.0.3"
+ yargs "^11.0.0"
jest-config@^22.4.3:
version "22.4.3"
@@ -4600,6 +4620,24 @@ jest-config@^22.4.3:
jest-validate "^22.4.3"
pretty-format "^22.4.3"
+jest-config@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.1.0.tgz#708ca0f431d356ee424fb4895d3308006bdd8241"
+ dependencies:
+ babel-core "^6.0.0"
+ babel-jest "^23.0.1"
+ chalk "^2.0.1"
+ glob "^7.1.1"
+ jest-environment-jsdom "^23.1.0"
+ jest-environment-node "^23.1.0"
+ jest-get-type "^22.1.0"
+ jest-jasmine2 "^23.1.0"
+ jest-regex-util "^23.0.0"
+ jest-resolve "^23.1.0"
+ jest-util "^23.1.0"
+ jest-validate "^23.0.1"
+ pretty-format "^23.0.1"
+
jest-diff@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030"
@@ -4609,12 +4647,28 @@ jest-diff@^22.4.3:
jest-get-type "^22.4.3"
pretty-format "^22.4.3"
-jest-docblock@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19"
+jest-diff@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a"
+ dependencies:
+ chalk "^2.0.1"
+ diff "^3.2.0"
+ jest-get-type "^22.1.0"
+ pretty-format "^23.0.1"
+
+jest-docblock@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725"
dependencies:
detect-newline "^2.1.0"
+jest-each@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.1.0.tgz#16146b592c354867a5ae5e13cdf15c6c65b696c6"
+ dependencies:
+ chalk "^2.0.1"
+ pretty-format "^23.0.1"
+
jest-environment-jsdom@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e"
@@ -4623,6 +4677,14 @@ jest-environment-jsdom@^22.4.3:
jest-util "^22.4.3"
jsdom "^11.5.1"
+jest-environment-jsdom@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz#85929914e23bed3577dac9755f4106d0697c479c"
+ dependencies:
+ jest-mock "^23.1.0"
+ jest-util "^23.1.0"
+ jsdom "^11.5.1"
+
jest-environment-node@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.3.tgz#54c4eaa374c83dd52a9da8759be14ebe1d0b9129"
@@ -4630,23 +4692,30 @@ jest-environment-node@^22.4.3:
jest-mock "^22.4.3"
jest-util "^22.4.3"
+jest-environment-node@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.1.0.tgz#452c0bf949cfcbbacda1e1762eeed70bc784c7d5"
+ dependencies:
+ jest-mock "^23.1.0"
+ jest-util "^23.1.0"
+
jest-get-type@^21.2.0:
version "21.2.0"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23"
-jest-get-type@^22.4.3:
+jest-get-type@^22.1.0, jest-get-type@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
-jest-haste-map@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.3.tgz#25842fa2ba350200767ac27f658d58b9d5c2e20b"
+jest-haste-map@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.1.0.tgz#18e6c7d5a8d27136f91b7d9852f85de0c7074c49"
dependencies:
fb-watchman "^2.0.0"
graceful-fs "^4.1.11"
- jest-docblock "^22.4.3"
- jest-serializer "^22.4.3"
- jest-worker "^22.4.3"
+ jest-docblock "^23.0.1"
+ jest-serializer "^23.0.1"
+ jest-worker "^23.0.1"
micromatch "^2.3.11"
sane "^2.0.0"
@@ -4666,11 +4735,27 @@ jest-jasmine2@^22.4.3:
jest-util "^22.4.3"
source-map-support "^0.5.0"
-jest-leak-detector@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.3.tgz#2b7b263103afae8c52b6b91241a2de40117e5b35"
+jest-jasmine2@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz#4afab31729b654ddcd2b074add849396f13b30b8"
dependencies:
- pretty-format "^22.4.3"
+ chalk "^2.0.1"
+ co "^4.6.0"
+ expect "^23.1.0"
+ is-generator-fn "^1.0.0"
+ jest-diff "^23.0.1"
+ jest-each "^23.1.0"
+ jest-matcher-utils "^23.0.1"
+ jest-message-util "^23.1.0"
+ jest-snapshot "^23.0.1"
+ jest-util "^23.1.0"
+ pretty-format "^23.0.1"
+
+jest-leak-detector@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0"
+ dependencies:
+ pretty-format "^23.0.1"
jest-matcher-utils@^22.4.3:
version "22.4.3"
@@ -4680,6 +4765,14 @@ jest-matcher-utils@^22.4.3:
jest-get-type "^22.4.3"
pretty-format "^22.4.3"
+jest-matcher-utils@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f"
+ dependencies:
+ chalk "^2.0.1"
+ jest-get-type "^22.1.0"
+ pretty-format "^23.0.1"
+
jest-message-util@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.3.tgz#cf3d38aafe4befddbfc455e57d65d5239e399eb7"
@@ -4690,19 +4783,38 @@ jest-message-util@^22.4.3:
slash "^1.0.0"
stack-utils "^1.0.1"
+jest-message-util@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.1.0.tgz#9a809ba487ecac5ce511d4e698ee3b5ee2461ea9"
+ dependencies:
+ "@babel/code-frame" "^7.0.0-beta.35"
+ chalk "^2.0.1"
+ micromatch "^2.3.11"
+ slash "^1.0.0"
+ stack-utils "^1.0.1"
+
jest-mock@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.4.3.tgz#f63ba2f07a1511772cdc7979733397df770aabc7"
+jest-mock@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.1.0.tgz#a381c31b121ab1f60c462a2dadb7b86dcccac487"
+
jest-regex-util@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.4.3.tgz#a826eb191cdf22502198c5401a1fc04de9cef5af"
-jest-resolve-dependencies@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.4.3.tgz#e2256a5a846732dc3969cb72f3c9ad7725a8195e"
+jest-regex-util@^23.0.0:
+ version "23.0.0"
+ resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76"
+
+jest-resolve-dependencies@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d"
dependencies:
- jest-regex-util "^22.4.3"
+ jest-regex-util "^23.0.0"
+ jest-snapshot "^23.0.1"
jest-resolve@^22.4.3:
version "22.4.3"
@@ -4711,50 +4823,61 @@ jest-resolve@^22.4.3:
browser-resolve "^1.11.2"
chalk "^2.0.1"
-jest-runner@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.3.tgz#298ddd6a22b992c64401b4667702b325e50610c3"
+jest-resolve@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.1.0.tgz#b9e316eecebd6f00bc50a3960d1527bae65792d2"
+ dependencies:
+ browser-resolve "^1.11.2"
+ chalk "^2.0.1"
+ realpath-native "^1.0.0"
+
+jest-runner@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.1.0.tgz#fa20a933fff731a5432b3561e7f6426594fa29b5"
dependencies:
exit "^0.1.2"
- jest-config "^22.4.3"
- jest-docblock "^22.4.3"
- jest-haste-map "^22.4.3"
- jest-jasmine2 "^22.4.3"
- jest-leak-detector "^22.4.3"
- jest-message-util "^22.4.3"
- jest-runtime "^22.4.3"
- jest-util "^22.4.3"
- jest-worker "^22.4.3"
+ graceful-fs "^4.1.11"
+ jest-config "^23.1.0"
+ jest-docblock "^23.0.1"
+ jest-haste-map "^23.1.0"
+ jest-jasmine2 "^23.1.0"
+ jest-leak-detector "^23.0.1"
+ jest-message-util "^23.1.0"
+ jest-runtime "^23.1.0"
+ jest-util "^23.1.0"
+ jest-worker "^23.0.1"
+ source-map-support "^0.5.6"
throat "^4.0.0"
-jest-runtime@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.3.tgz#b69926c34b851b920f666c93e86ba2912087e3d0"
+jest-runtime@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.1.0.tgz#b4ae0e87259ecacfd4a884b639db07cf4dd620af"
dependencies:
babel-core "^6.0.0"
- babel-jest "^22.4.3"
- babel-plugin-istanbul "^4.1.5"
+ babel-plugin-istanbul "^4.1.6"
chalk "^2.0.1"
convert-source-map "^1.4.0"
exit "^0.1.2"
+ fast-json-stable-stringify "^2.0.0"
graceful-fs "^4.1.11"
- jest-config "^22.4.3"
- jest-haste-map "^22.4.3"
- jest-regex-util "^22.4.3"
- jest-resolve "^22.4.3"
- jest-util "^22.4.3"
- jest-validate "^22.4.3"
- json-stable-stringify "^1.0.1"
+ jest-config "^23.1.0"
+ jest-haste-map "^23.1.0"
+ jest-message-util "^23.1.0"
+ jest-regex-util "^23.0.0"
+ jest-resolve "^23.1.0"
+ jest-snapshot "^23.0.1"
+ jest-util "^23.1.0"
+ jest-validate "^23.0.1"
micromatch "^2.3.11"
realpath-native "^1.0.0"
slash "^1.0.0"
strip-bom "3.0.0"
write-file-atomic "^2.1.0"
- yargs "^10.0.3"
+ yargs "^11.0.0"
-jest-serializer@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.3.tgz#a679b81a7f111e4766235f4f0c46d230ee0f7436"
+jest-serializer@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165"
jest-snapshot@^22.4.3:
version "22.4.3"
@@ -4767,6 +4890,17 @@ jest-snapshot@^22.4.3:
natural-compare "^1.4.0"
pretty-format "^22.4.3"
+jest-snapshot@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e"
+ dependencies:
+ chalk "^2.0.1"
+ jest-diff "^23.0.1"
+ jest-matcher-utils "^23.0.1"
+ mkdirp "^0.5.1"
+ natural-compare "^1.4.0"
+ pretty-format "^23.0.1"
+
jest-util@^22.4.3:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.3.tgz#c70fec8eec487c37b10b0809dc064a7ecf6aafac"
@@ -4779,6 +4913,19 @@ jest-util@^22.4.3:
mkdirp "^0.5.1"
source-map "^0.6.0"
+jest-util@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.1.0.tgz#c0251baf34644c6dd2fea78a962f4263ac55772d"
+ dependencies:
+ callsites "^2.0.0"
+ chalk "^2.0.1"
+ graceful-fs "^4.1.11"
+ is-ci "^1.0.10"
+ jest-message-util "^23.1.0"
+ mkdirp "^0.5.1"
+ slash "^1.0.0"
+ source-map "^0.6.0"
+
jest-validate@^21.1.0:
version "21.2.1"
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7"
@@ -4798,18 +4945,35 @@ jest-validate@^22.4.3:
leven "^2.1.0"
pretty-format "^22.4.3"
-jest-worker@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.4.3.tgz#5c421417cba1c0abf64bf56bd5fb7968d79dd40b"
+jest-validate@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f"
+ dependencies:
+ chalk "^2.0.1"
+ jest-get-type "^22.1.0"
+ leven "^2.1.0"
+ pretty-format "^23.0.1"
+
+jest-watcher@^23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.1.0.tgz#a8d5842e38d9fb4afff823df6abb42a58ae6cdbd"
+ dependencies:
+ ansi-escapes "^3.0.0"
+ chalk "^2.0.1"
+ string-length "^2.0.0"
+
+jest-worker@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc"
dependencies:
merge-stream "^1.0.1"
-jest@22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest/-/jest-22.4.3.tgz#2261f4b117dc46d9a4a1a673d2150958dee92f16"
+jest@23.1.0:
+ version "23.1.0"
+ resolved "https://registry.yarnpkg.com/jest/-/jest-23.1.0.tgz#bbb7f893100a11a742dd8bd0d047a54b0968ad1a"
dependencies:
import-local "^1.0.0"
- jest-cli "^22.4.3"
+ jest-cli "^23.1.0"
js-base64@^2.1.9:
version "2.3.2"
@@ -6470,6 +6634,13 @@ pretty-format@^22.4.3:
ansi-regex "^3.0.0"
ansi-styles "^3.2.0"
+pretty-format@^23.0.1:
+ version "23.0.1"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4"
+ dependencies:
+ ansi-regex "^3.0.0"
+ ansi-styles "^3.2.0"
+
private@^0.1.6, private@^0.1.8:
version "0.1.8"
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
@@ -7607,6 +7778,13 @@ source-map-support@^0.5.0:
dependencies:
source-map "^0.6.0"
+source-map-support@^0.5.5, source-map-support@^0.5.6:
+ version "0.5.6"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13"
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
source-map-url@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
@@ -8074,9 +8252,9 @@ tryit@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
-ts-jest@22.4.5:
- version "22.4.5"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-22.4.5.tgz#b894f273c7208fa21a77e407dbe12d5e54e8ef72"
+ts-jest@22.4.6:
+ version "22.4.6"
+ resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-22.4.6.tgz#a5d7f5e8b809626d1f4143209d301287472ec344"
dependencies:
babel-core "^6.26.3"
babel-plugin-istanbul "^4.1.6"
@@ -8087,6 +8265,7 @@ ts-jest@22.4.5:
jest-config "^22.4.3"
lodash "^4.17.10"
pkg-dir "^2.0.0"
+ source-map-support "^0.5.5"
yargs "^11.0.0"
ts-loader@4.3.0:
@@ -8715,12 +8894,6 @@ yallist@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
-yargs-parser@^8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.0.0.tgz#21d476330e5a82279a4b881345bf066102e219c6"
- dependencies:
- camelcase "^4.1.0"
-
yargs-parser@^9.0.2:
version "9.0.2"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
@@ -8744,23 +8917,6 @@ yargs@11.0.0, yargs@^11.0.0:
y18n "^3.2.1"
yargs-parser "^9.0.2"
-yargs@^10.0.3:
- version "10.0.3"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae"
- dependencies:
- cliui "^3.2.0"
- decamelize "^1.1.1"
- find-up "^2.1.0"
- get-caller-file "^1.0.1"
- os-locale "^2.0.0"
- require-directory "^2.1.1"
- require-main-filename "^1.0.1"
- set-blocking "^2.0.0"
- string-width "^2.0.0"
- which-module "^2.0.0"
- y18n "^3.2.1"
- yargs-parser "^8.0.0"
-
yargs@~3.10.0:
version "3.10.0"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"