Skip to content

Commit

Permalink
Switch to Mocha (#4)
Browse files Browse the repository at this point in the history
I'm getting bit really hard by these issues:

- jestjs/jest#2713
- jasmine/jasmine#577
- jasmine/jasmine#529
  • Loading branch information
paulmelnikow committed Nov 16, 2018
1 parent ea2887f commit 60b402d
Show file tree
Hide file tree
Showing 5 changed files with 187 additions and 4,338 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ extends:

env:
node: true
jest: true
mocha: true

parserOptions:
# Override eslint-config-standard, which incorrectly sets this to "module",
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,23 @@ setting the `GOOGLE_APPLICATION_CREDENTIALS` access variable.

```gql
{
getBook(slug: "harry-potter") {
title
author
}
getBook(slug: "harry-potter") {
title
author
}
}
```

You should see the result:

```json
{
"data": {
"getBook": {
"title": "Harry Potter and the Chamber of Secrets",
"author": "J.K. Rowling"
}
"data": {
"getBook": {
"title": "Harry Potter and the Chamber of Secrets",
"author": "J.K. Rowling"
}
}
}
```

Expand Down

0 comments on commit 60b402d

Please sign in to comment.