Skip to content

Commit

Permalink
build: no need to use blue-tape for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lance committed Jun 20, 2017
1 parent 2c326cc commit 9feb539
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"babel-plugin-transform-merge-sibling-variables": "6.8.3",
"babel-plugin-transform-minify-booleans": "~6.8.0",
"babel-plugin-transform-undefined-to-void": "~6.8.0",
"blue-tape": "^1.0.0",
"browserify": "~14.3.0",
"escompress": "~0.5.0",
"eslint": "~3.19.0",
Expand Down
3 changes: 1 addition & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

const browser = require('./browser/browser-tap');
const test = require('tape');
const bluetest = require('blue-tape');
const cb = require('../');

browser.enable();
Expand Down Expand Up @@ -331,7 +330,7 @@ test('CircuitBreaker emits failure when falling back', (t) => {
}).catch(t.fail);
});

bluetest('CircuitBreaker status', (t) => {
test('CircuitBreaker status', (t) => {
t.plan(12);
const breaker = cb(passFail, { errorThresholdPercentage: 1 });
const deepEqual = (t, expected) => (actual) => t.deepEqual(actual, expected, 'expected status values');
Expand Down

0 comments on commit 9feb539

Please sign in to comment.