-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathtest.network.js
29 lines (23 loc) · 1.14 KB
/
test.network.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
describe("network", function () {
var network,
exec = require('cordova/exec'),
channel = require('cordova/channel');
it("should fire exec on first-run after CordovaReady fires", function() {
exec.reset();
network = require('cordova/plugin/network');
channel.onCordovaReady.fire();
expect(exec).toHaveBeenCalledWith(jasmine.any(Function), jasmine.any(Function), "NetworkStatus", "getConnectionInfo", []);
});
//TODO: There is a lot of code executed on the first require call to this plugin
// we should refactor or find a good way to call and test this code.
//
// since exec is a spy we can scrounge the list of calls to find it, but I would
// rather refactor to have something a little cleaner (maybe move this code into the init
// routine for the platform)
it("can get the network info", function () {
var success = jasmine.createSpy(),
error = jasmine.createSpy();
network.getInfo(success, error);
expect(exec).toHaveBeenCalledWith(success, error, "NetworkStatus", "getConnectionInfo", []);
});
});