Home » Node.js Assertion Testing

Node.js Assertion Testing

by Online Tutorials Library

Node.js Assertion Testing

The 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 Example

Let’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.

Node.js assert example 1

File: assert_example2.js

Now you will see the AssertionError.

Node.js assert example 2

Next TopicNode.js V8

You may also like