aurelia-view-manager
Version:
A view manager for aurelia plugins. Add support for overriding views, and multiple frameworks
14 lines (12 loc) • 370 B
JavaScript
import * as exports from '../../dist/amd/aurelia-view-manager';
describe('aurelia-view-manager', () => {
it('exports all the required things', () => {
/* helps with checking backward compatibility */
expect(Object.keys(exports)).toEqual(jasmine.arrayContaining([
'configure',
'resolvedView',
'ViewManager',
'Config'
]));
});
});