Skip to content

Commit b84096e

Browse files
committed
fix: remove cordova.version tests
1 parent a988c18 commit b84096e

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/tests.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,6 @@ exports.defineAutoTests = function () {
4949
expect(String(window.device.cordova).length > 0).toBe(true);
5050
});
5151

52-
it('should depend on the presence of cordova.version string', function () {
53-
expect(window.cordova.version).toBeDefined();
54-
expect(String(window.cordova.version).length > 0).toBe(true);
55-
});
56-
57-
it('should contain device.cordova equal to cordova.version', function () {
58-
expect(window.device.cordova).toBe(window.cordova.version);
59-
});
60-
6152
it('should contain a model specification that is a string', function () {
6253
expect(window.device.model).toBeDefined();
6354
expect(String(window.device.model).length > 0).toBe(true);

0 commit comments

Comments
 (0)