30 lines
874 B
JavaScript
30 lines
874 B
JavaScript
'use strict';
|
|
|
|
(function() {
|
|
// Forms Controller Spec
|
|
describe('TimeCounter Service Tests', function() {
|
|
// Initialize global variables
|
|
var TimeCounter;
|
|
|
|
// Load the main application module
|
|
beforeEach(module(ApplicationConfiguration.applicationModuleName));
|
|
|
|
beforeEach(inject(function (_TimeCounter_) {
|
|
TimeCounter = _TimeCounter_;
|
|
}));
|
|
|
|
|
|
it('should be able to time 1 second interval as 1 second', function() {
|
|
var timeSpent = 0;
|
|
TimeCounter.restartClock();
|
|
|
|
// TODO: David - come up with a better way to test this that is time-efficient
|
|
/*setTimeout(function(){
|
|
timeSpent = TimeCounter.stopClock();
|
|
expect(timeSpent).toBeGreaterThanOrEqual(3);
|
|
done();
|
|
}, 3000);
|
|
*/
|
|
});
|
|
});
|
|
}()); |