test: replace describe.only in shim tests with describes so all tests run
This commit is contained in:
parent
ae2ba5ca2e
commit
2468d63306
|
@ -4,7 +4,7 @@ const bufferDefault = require('../../../shims/buffer').default;
|
||||||
const bufferNamed = require('../../../shims/buffer').Buffer;
|
const bufferNamed = require('../../../shims/buffer').Buffer;
|
||||||
const bufferActual = require('../../../src/index').Buffer;
|
const bufferActual = require('../../../src/index').Buffer;
|
||||||
|
|
||||||
describe.only('path shim', () => {
|
describe('path shim', () => {
|
||||||
it('default export should be defined', () => {
|
it('default export should be defined', () => {
|
||||||
expect(bufferDefault).to.not.be.undefined;
|
expect(bufferDefault).to.not.be.undefined;
|
||||||
});
|
});
|
||||||
|
|
|
@ -3,7 +3,7 @@ const expect = require('chai').expect;
|
||||||
const utils = require('../../lib/test-utils');
|
const utils = require('../../lib/test-utils');
|
||||||
const fs = utils.shimIndexedDB(() => require('../../../shims/fs').default);
|
const fs = utils.shimIndexedDB(() => require('../../../shims/fs').default);
|
||||||
|
|
||||||
describe.only('fs shim', () => {
|
describe('fs shim', () => {
|
||||||
it('should be defined', () => {
|
it('should be defined', () => {
|
||||||
expect(fs).to.not.be.undefined;
|
expect(fs).to.not.be.undefined;
|
||||||
});
|
});
|
||||||
|
|
|
@ -3,7 +3,7 @@ const expect = require('chai').expect;
|
||||||
const path = require('../../../shims/path').default;
|
const path = require('../../../shims/path').default;
|
||||||
const pathActual = require('../../../src/index').path;
|
const pathActual = require('../../../src/index').path;
|
||||||
|
|
||||||
describe.only('path shim', () => {
|
describe('path shim', () => {
|
||||||
it('should be defined', () => {
|
it('should be defined', () => {
|
||||||
expect(path).to.not.be.undefined;
|
expect(path).to.not.be.undefined;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue