import * as angular from 'angular'; import 'angular-mocks'; describe('text example', () => { let text = 'Hello world!!!'; beforeEach(angular.mock.module('orders.rest')); it('should initialize correctly', () => { expect(text).toEqual('Hello world!!!'); }); });