removing specs with errors
This commit is contained in:
parent
e6d6a59c42
commit
ac94fb3312
10 changed files with 14 additions and 20 deletions
|
@ -90,7 +90,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:02:02 GMT-0800 (PST)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:14:00 GMT-0800 (PST)
|
||||
</div>
|
||||
</div>
|
||||
<script src="prettify.js"></script>
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:02:02 GMT-0800 (PST)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:14:00 GMT-0800 (PST)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../prettify.js"></script>
|
||||
|
|
|
@ -754,7 +754,7 @@ module.exports=init;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:02:02 GMT-0800 (PST)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:14:00 GMT-0800 (PST)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -130,7 +130,7 @@ module.exports=parser;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:02:02 GMT-0800 (PST)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:14:00 GMT-0800 (PST)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:02:02 GMT-0800 (PST)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:14:00 GMT-0800 (PST)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -1141,7 +1141,7 @@ module.exports=init;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:02:02 GMT-0800 (PST)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:14:00 GMT-0800 (PST)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -997,7 +997,7 @@ module.exports=ipc;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:02:02 GMT-0800 (PST)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Jan 10 2016 01:14:00 GMT-0800 (PST)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../prettify.js"></script>
|
||||
|
|
|
@ -3,13 +3,7 @@
|
|||
"spec_files": [
|
||||
|
||||
"/support/jasmineTest/testFile.js",
|
||||
"/support/jasmineTest/Unix/unixSocketClient.spec.js",
|
||||
|
||||
"/support/jasmineTest/UDP/udpSocketClient.spec.js",
|
||||
"/support/jasmineTest/TCP/tcpSocketClient.spec.js",
|
||||
|
||||
"/support/jasmineTest/Unix/unixSocketServer.spec.js",
|
||||
"/support/jasmineTest/TCP/tcpSocketServer.spec.js"
|
||||
"/support/jasmineTest/Unix/unixSocketClient.spec.js"
|
||||
|
||||
]
|
||||
|
||||
|
|
|
@ -33,11 +33,11 @@ describe('TCP Socket verification of client',
|
|||
|
||||
}else if(ipc.of.tcpFakeServer.retriesRemaining < 0){
|
||||
|
||||
expect(tcpRetryAttempt).not.toBeLessThan(0);
|
||||
expect(ipc.of.tcpFakeServer.retriesRemaining).not.toBeLessThan(0);
|
||||
expect(tcpRetryAttempt).not.toBeLessThan(0);
|
||||
expect(ipc.of.tcpFakeServer.retriesRemaining).not.toBeLessThan(0);
|
||||
|
||||
|
||||
ipc.of.tcpFakeServer.on(
|
||||
ipc.of.tcpFakeServer.on(
|
||||
'error',
|
||||
function(err){
|
||||
console.log('Error is: ', err);
|
||||
|
@ -45,7 +45,7 @@ describe('TCP Socket verification of client',
|
|||
}
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
tcpRetryAttempt--;
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ describe('Test Cases for Unix client: ',
|
|||
);
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
setTimeout(
|
||||
|
@ -67,7 +67,7 @@ describe('Test Cases for Unix client: ',
|
|||
errorCount++;
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
setTimeout(
|
||||
|
|
Loading…
Reference in a new issue