Blame view
test/spec/services/illustrationSpec.js
490 Bytes
6f105dbd5
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/*jshint unused: vars */ define(['angular', 'angular-mocks', 'app'], function(angular, mocks, app) { 'use strict'; describe('Service: illustration', function () { // load the service's module beforeEach(module('tshatsApp')); // instantiate service var illustration; beforeEach(inject(function (_illustration_) { illustration = _illustration_; })); it('should do something', function () { expect(!!illustration).toBe(true); }); }); }); |