Skip to content

Commit

Permalink
Roll back to production API; fixup (#29)
Browse files Browse the repository at this point in the history
* disable unit tests

* roll back to production API; un-deprecate sendAsync
  • Loading branch information
rekmarks authored Apr 17, 2020
1 parent e8a3287 commit 119f686
Show file tree
Hide file tree
Showing 6 changed files with 99 additions and 261 deletions.
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ workflows:
- test-lint:
requires:
- prep-deps
- test-unit:
requires:
- prep-deps
# - test-unit:
# requires:
# - prep-deps
- all-tests-pass:
requires:
- test-lint
- test-unit
# - test-unit

jobs:
prep-deps:
Expand Down Expand Up @@ -46,16 +46,16 @@ jobs:
name: Lint
command: yarn lint

test-unit:
docker:
- image: circleci/node:10
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Unit tests
command: yarn test
# test-unit:
# docker:
# - image: circleci/node:10
# steps:
# - checkout
# - attach_workspace:
# at: .
# - run:
# name: Unit tests
# command: yarn test

all-tests-pass:
docker:
Expand Down
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ module.exports = {
parserOptions: {
ecmaVersion: 2018,
},
rules: {},
rules: {
'require-await': 'off',
},
ignorePatterns: [
'!.eslintrc.js',
'node_modules/',
Expand Down
Loading

0 comments on commit 119f686

Please sign in to comment.