Fix issue #766: Remove describe.only from shim tests (#767)

* 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 commit cddeef421b.

* Revert "test: move require chai to top of file for consistency with other tests"

This reverts commit 40df7912fb.
This commit is contained in:
Ben Heidemann 2021-03-21 17:57:34 +00:00 committed by GitHub
parent f8c9732be9
commit 3e88aeca92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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;
});

View File

@ -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;
});

View File

@ -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;
});