Mock ENV function

This commit is contained in:
Clint Ryan
2017-03-24 00:36:05 +11:00
parent b48be4e619
commit cc68abb67e

View File

@@ -27,30 +27,29 @@ describe.only('User Controller', function() {
inject(function($rootScope, $controller, User, Content) { inject(function($rootScope, $controller, User, Content) {
scope = $rootScope.$new(); scope = $rootScope.$new();
content = Content; content = Content;
$window = { $controller('RootCtrl', { $scope: scope, User: User});
env: {
t: sandbox.stub(),
},
};
$controller('RootCtrl', { $scope: scope, $window: $window, User: User});
ctrl = $controller('UserCtrl', { $scope: scope, User: User, $window: $window}); ctrl = $controller('UserCtrl', { $scope: scope, User: User, $window: $window});
}); });
}); });
describe('getProgressDisplay', function() { describe('getProgressDisplay', function() {
beforeEach(() => {
sandbox.stub(window.env, 't');
window.env.t.onFirstCall().returns('Progress until next');
});
it('should return initial progress', function() { it('should return initial progress', function() {
$window.env.t.onFirstCall().returns('');
scope.profile.loginIncentives = 0; scope.profile.loginIncentives = 0;
content.loginIncentives = [{ content.loginIncentives = [{
nextRewardAt: 1, nextRewardAt: 1,
reward: true reward: true
}]; }];
var actual = scope.getProgressDisplay(); var actual = scope.getProgressDisplay();
expect(actual.trim()).to.eql('0/1'); expect(actual.trim()).to.eql('Progress until next 0/1');
}); });
it('should return progress between next reward and current reward', function() { it('should return progress between next reward and current reward', function() {
$window.env.t.onFirstCall().returns('');
scope.profile.loginIncentives = 1; scope.profile.loginIncentives = 1;
content.loginIncentives = [{ content.loginIncentives = [{
nextRewardAt: 1, nextRewardAt: 1,
@@ -64,7 +63,7 @@ describe.only('User Controller', function() {
nextRewardAt: 3 nextRewardAt: 3
}]; }];
var actual = scope.getProgressDisplay(); var actual = scope.getProgressDisplay();
expect(actual.trim()).to.eql('0/1'); expect(actual.trim()).to.eql('Progress until next 0/1');
}); });
}); });
}); });