filer/tests/spec/shims/path.spec.js

15 lines
368 B
JavaScript
Raw Normal View History

2021-03-07 15:21:39 +00:00
'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);
});
});