Skip to content

Commit

Permalink
test(service): super simples test
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBGod committed Mar 15, 2016
1 parent e08b95c commit f4c9e97
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/service.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import {
it,
describe
} from 'angular2/testing';

import {ScrollSpyService} from './service';

jasmine.DEFAULT_TIMEOUT_INTERVAL = 5000;

export function main() {
describe('service', () => {

var fixture: ComponentFixture;

it('is defined', () => {
expect(ScrollSpyService).toBeDefined();
});

});
}

0 comments on commit f4c9e97

Please sign in to comment.