test: add spec for path shim

This commit is contained in:
bcheidemann 2021-03-07 15:21:39 +00:00
parent 3a8a59d362
commit a2151cab25
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
'use strict';
const expect = require('chai').expect;
const path = require('../../../shims/path').default;
const pathActual = require('../../../src/index').path;
describe.only('path shim', () => {
it('should be defined', () => {
expect(path).to.not.be.undefined;
});
it('should be re-exposing path', () => {
expect(path).to.equal(pathActual);
});
});