upgrade electron version and app version

This commit is contained in:
Vishwas Shashidhar
2018-08-21 15:36:26 +05:30
parent 5a0576402c
commit a6eabca960
5 changed files with 29 additions and 29 deletions

View File

@@ -270,7 +270,7 @@ describe('read/write config tests', function() {
return updateConfigField('url2', 'hello world')
.catch(function (err) {
expect(err.message).toBe('Path must be a string. Received null');
expect(err.message).toBe('The "path" argument must be of type string. Received type object');
});
});
@@ -309,7 +309,7 @@ describe('read/write config tests', function() {
return saveUserConfig('url2', 'hello world')
.catch(function (err) {
expect(err.message).toBe('Path must be a string. Received null');
expect(err.message).toBe('The "path" argument must be of type string. Received type object');
});
});