Ariya Hidayat 2014-08-24 19:33:53 -07:00
parent 8cabfed4b3
commit 5ec80ff09c
1 changed files with 3 additions and 3 deletions

View File

@ -54,17 +54,17 @@ describe("System object", function() {
expect(typeof system.isSSLSupported).toEqual('boolean');
});
xit("should have stdout as object", function() {
it("should have stdout as object", function() {
expect(typeof system.stdout).toEqual('object');
expect(null == system.stdout).toBeFalsy();
});
xit("should have stderr as object", function() {
it("should have stderr as object", function() {
expect(typeof system.stderr).toEqual('object');
expect(null == system.stderr).toBeFalsy();
});
xit("should have stdin as object", function() {
it("should have stdin as object", function() {
expect(typeof system.stdin).toEqual('object');
expect(null == system.stdin).toBeFalsy();
});