Skip to content

Commit

Permalink
chore(package): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nodkz committed Oct 3, 2017
1 parent 0a7103f commit 2d59eb8
Show file tree
Hide file tree
Showing 3 changed files with 443 additions and 297 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,28 @@
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.0.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"cz-conventional-changelog": "^2.0.0",
"elasticsearch": "^13.3.1",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.2.0",
"express": "^4.15.4",
"eslint-plugin-prettier": "^2.3.1",
"express": "^4.16.1",
"express-graphql": "^0.6.11",
"flow-bin": "^0.54.1",
"graphql": "^0.11.3",
"graphql-compose": "^2.9.0",
"jest": "^21.0.1",
"jest": "^21.2.1",
"npm-run-all": "^4.1.1",
"prettier": "^1.6.1",
"rimraf": "^2.5.4",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"semantic-release": "^7.0.2"
},
"config": {
Expand All @@ -76,7 +76,7 @@
"watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint --ext .js ./src",
"flow": "./node_modules/.bin/flow stop && ./node_modules/.bin/flow",
"flow": "./node_modules/.bin/flow",
"test": "npm run coverage && npm run lint && npm run flow",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"docker": "npm run docker:v5",
Expand Down
11 changes: 10 additions & 1 deletion src/__tests__/mappingConverter-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,16 @@ describe('PropertiesConverter', () => {
GQC.rootQuery().addFields({ userES: tc9 });
const result = await graphql(
GQC.buildSchema(),
`query { userES { _id, lastName, email, _passwordHash } }`,
`
query {
userES {
_id
lastName
email
_passwordHash
}
}
`,
{
// simulate elastic responce
userES: {
Expand Down
Loading

0 comments on commit 2d59eb8

Please sign in to comment.