diff --git a/tests/spec/shims/buffer.spec.js b/tests/spec/shims/buffer.spec.js index 888207a..6c1b705 100644 --- a/tests/spec/shims/buffer.spec.js +++ b/tests/spec/shims/buffer.spec.js @@ -4,7 +4,7 @@ const bufferDefault = require('../../../shims/buffer').default; const bufferNamed = require('../../../shims/buffer').Buffer; const bufferActual = require('../../../src/index').Buffer; -describe.only('path shim', () => { +describe('path shim', () => { it('default export should be defined', () => { expect(bufferDefault).to.not.be.undefined; }); diff --git a/tests/spec/shims/fs.spec.js b/tests/spec/shims/fs.spec.js index d8fb5a4..b4ee04b 100644 --- a/tests/spec/shims/fs.spec.js +++ b/tests/spec/shims/fs.spec.js @@ -3,7 +3,7 @@ const expect = require('chai').expect; const utils = require('../../lib/test-utils'); const fs = utils.shimIndexedDB(() => require('../../../shims/fs').default); -describe.only('fs shim', () => { +describe('fs shim', () => { it('should be defined', () => { expect(fs).to.not.be.undefined; }); diff --git a/tests/spec/shims/path.spec.js b/tests/spec/shims/path.spec.js index 0432aca..721a6d0 100644 --- a/tests/spec/shims/path.spec.js +++ b/tests/spec/shims/path.spec.js @@ -3,7 +3,7 @@ const expect = require('chai').expect; const path = require('../../../shims/path').default; const pathActual = require('../../../src/index').path; -describe.only('path shim', () => { +describe('path shim', () => { it('should be defined', () => { expect(path).to.not.be.undefined; });