angular-nevera-generator
Version:
Yeoman AngularJS scaffold a webapp with Angular 1 written in ES6 (Babel), TypeScript through Webpack or SystemJS including tools Gulp 4, ESLint, Browsersync and Karma
20 lines (17 loc) • 727 B
text/typescript
import * as angular from 'angular';
import 'angular-mocks';
import {title} from './title';
describe('title component', () => {
beforeEach(() => {
angular
.module('fountainTitle', ['<%- templateUrl %>'])
.component('fountainTitle', title);
<%- modules !== 'systemjs' ? 'angular.mock.' : '' %>module('fountainTitle');
});
it('should render \'Allo, \'Allo!', <%- modules !== 'systemjs' ? 'angular.mock.' : '' %>inject(($rootScope: ng.IRootScopeService, $compile: ng.ICompileService) => {
const element = $compile('<fountain-title></fountain-title>')($rootScope);
$rootScope.$digest();
const title = element.find('h1');
expect(title.html().trim()).toEqual('\'Allo, \'Allo!');
}));
});