* test: replace describe.only in shim tests with describes so all tests run * test: move require chai to top of file for consistency with other tests * chore: npm install * test: replace describe.only in shim tests with describes so all tests run * test: move require chai to top of file for consistency with other tests * chore: npm install * Revert "chore: npm install" This reverts commitcddeef421b
. * Revert "test: move require chai to top of file for consistency with other tests" This reverts commit40df7912fb
.
This commit is contained in:
parent
f8c9732be9
commit
3e88aeca92
|
@ -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;
|
||||
});
|
||||
|
|
|
@ -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;
|
||||
});
|
||||
|
|
|
@ -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;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue