core-resource-app-test
Version:
App that contains assets and scripts for the core apps
12 lines (9 loc) • 358 B
JavaScript
import * as helpers from '../../src/component-helpers';
describe('component-helpers', () => {
it('should have addContext on the helpers object', () => {
expect(helpers.addContext).to.be.a('function');
});
it('should have addD2Context on the helpers object', () => {
expect(helpers.addD2Context).to.be.a('function');
});
});