add missing comparisions

This commit is contained in:
JDonadio 2017-09-29 17:05:58 -03:00
parent 7a124d4dfa
commit 38aace6f5e
No known key found for this signature in database
GPG Key ID: EC1F4E04B2BFA730
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,8 @@ describe('Release Provider', () => {
it('should check unsuccessfully the current app version format', () => {
const result = service.checkForUpdates(latestAppVersion, 'V..3.3.3');
expect(result.updateAvailable).toBeNull;
expect(result.availabeVersion).toBeNull;
expect(result.error).toBeDefined();
expect(result.error).toMatch('Cannot');
expect(result.error).toMatch('version tag');