We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a988c18 commit b84096eCopy full SHA for b84096e
tests/tests.js
@@ -49,15 +49,6 @@ exports.defineAutoTests = function () {
49
expect(String(window.device.cordova).length > 0).toBe(true);
50
});
51
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
61
it('should contain a model specification that is a string', function () {
62
expect(window.device.model).toBeDefined();
63
expect(String(window.device.model).length > 0).toBe(true);
0 commit comments