mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
update tests
This commit is contained in:
parent
10b47c45eb
commit
2cecdbda07
@ -45,8 +45,8 @@ describe('AuthenticationService', () => {
|
||||
it('should have Authenticated use', inject([ AuthenticationService ], (authService) => {
|
||||
spyOn(authService.OnAuthenticated,"trigger").and.callThrough();
|
||||
authService.login();
|
||||
expect(authService.OnAuthenticated.trigger).toHaveBeenCalled();
|
||||
authService.OnAuthenticated.on(() =>{
|
||||
expect(authService.OnAuthenticated.trigger).toHaveBeenCalled();
|
||||
expect(authService.getUser()).not.toBe(null);
|
||||
expect(authService.isAuthenticated()).toBe(true);
|
||||
});
|
||||
|
@ -35,7 +35,7 @@ describe('UserService', () => {
|
||||
spyOn(networkService,"postJson");
|
||||
let credential = new LoginCredential("name","pass");
|
||||
userService.login(credential);
|
||||
expect(networkService.getJson).toHaveBeenCalled();
|
||||
expect(networkService.postJson).toHaveBeenCalled();
|
||||
expect(networkService.postJson.calls.argsFor(0)).toEqual(["/user/login",{"loginCredential": credential}]);
|
||||
}));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user