91-9990449935 0120-4256464 |
Node.js Assertion TestingThe Node.js Assert is the most elementary way to write tests. It provides no feedback when running your test unless one fails. The assert module provides a simple set of assertion tests that can be used to test invariants. The module is intended for internal use by Node.js, but can be used in application code via require ('assert'). However assert is not a testing framework and cannot be used as general purpose assertion library. Node.js Assert ExampleLet's see a simple example of Node.js Assert. File: assert_example1.js It will not provide any output because the case is true. If you want to see output, you need to make the test fail. File: assert_example2.js Now you will see the AssertionError.
Next TopicNode.js V8
|