Node.js recently shipped an experimental test runner. This talk will explore the test runner's architecture and API, and show how to use it with other core modules to create a testing experience with no external dependencies. This talk will also look at potential future additions to the test runner.
Zero Dependency Testing With Node.js

AI Generated Video Summary
Today's Talk is about zero dependency testing with Node.js. The new test runner in Node.js supports CLI and standalone file execution, and different test runner styles are supported. Writing tests with Node.js is simple using its assert and test modules. The test runner passed one test and failed another, and future work includes implementing a tap parser and adding code coverage and mocking features.
1. Zero Dependency Testing with Node.js
Today I'm going to be talking about zero dependency testing with Node.js. Almost all projects need a test runner. Node.js has a good assertion library, reducing dependencies. Many test runners have overlapping functionality. Having a built-in test runner reduces risks and costs. The trend is to include test runners in runtimes. The new test runner in Node supports CLI and standalone file execution. It supports synchronous, promises, async/await, and callback-based tests. Different test runner styles are supported.
Hi everyone! Thanks for coming to my talk. Today I'm going to be talking about zero dependency testing with Node.js, which essentially means that you can start writing your unit tests, integration tests, without having to install anything from NPM.
So before getting into the the nature of Node's new test runner, I wanted to talk a little bit about why a test runner was desired in the first place. So almost all projects need a test runner. So whether you're building an application or a module that you're planning to publish on NPM or whatever, if you're planning to have other people use your code, you almost certainly need tests for it. And then Node.js for years now has shipped with a really good assertion library that's just import assert. This is the assertion library that I've been using for years now. I like it, so that's one less dependency.
And then most test runners overlap a lot in terms of functionality anyway. So, you know, every test runner runs some tests. They generally have features like timeouts, you know, reporting which tests passed and failed, skipping tests, things like that. So, you know, there are differences, so some test runners are more suited to front-end development, some do things like injecting globals into your code without your knowledge, some execute their tests inside of different contexts, so, you might have surprising results whenever you check for equality and things like that. But, you know, so there are these rough edges, but in general, a lot of test runners have a lot of overlap.
And then on top of that, NPM is just really a dangerous place. There's, you know, over the years, there's been a number of incidents, things like left pad, the colors JS thing, even more recently, the minimist package, which I think has like 50 million downloads or something like that, nothing happened to it on NPM, but the GitHub repository went away. So, all of these third party dependencies that you're taking on come with some risk and some cost. And so, that's just, you know, one reason why having a test runner built in, I feel, is useful. And also, there's just a general trend to have more of these batteries included in the runtimes. So, you know, now Node has a built-in test runner. I'm pretty sure Bun has one, I know Deno has one. So, this is becoming more and more common.
And then, you know, here's my tweet from over a year ago, I believe that Node should ship a test runner and, you know, I feel pretty strongly about that. So, some of the features in the new test runner, you can run the test runner through the CLI interface that has the Node chips now with the dash dash test flag. Or you can actually just execute a standalone file containing tests. So, say you have your file foo.js, you can say Node foo.js and if you're using the test runner in there, it will still just work. When it comes to actually writing tests themselves, there's, you know, we support synchronous code, promises or async await based code. And even, you know, because Node still does have a lot of callback-based APIs, we support callback-based tests as well. If you're coming from a test runner like tap or tape, then we do support test style tests, using the test function. If you're coming from a test runner like Mocha or Jest, we have describe and IT functions. So, under the hood, everything uses test, describe and IT are just kind of implemented on top of test.
2. Writing Tests with Node.js
If you're looking for that familiar API, it is there. We support nesting tests, skipping tests, and filtering tests by name. Writing a test is simple with Node's assert and test modules. The test runner is published on NPM and supports Node 14, 16, and 18. After executing tests, the output follows the test anything protocol (tap).
But, you know, if you're looking for that familiar API, it is there. We support nesting tests, so you can have, you know, a test with arbitrarily nested tests inside of it. Same if you have describe. You can have suites containing more suites and more tests and things like that.
Skip and to do tests. So, you know, if you just want to skip over a test, there's a few different ways that you can do that. To do is kind of similar to skip in the fact that it won't cause your test suite to fail. But it will still execute the test and kind of don't care about the result. We also have only tests. So if you start the CLI runner with dash dash test only, then any test that you have annotated as being only tests are the only ones that will be executed. And then you can also filter tests by the name of the test. So if you use the dash dash test name pattern, you can actually pass in a regular expression and node will only execute the test whose names match that pattern.
So if you wanted to actually write a test, what would it look like? Here's a very simple example using nothing but node's assert module and node's test module. Here we have two tests. One is a synchronous test that passes and the other is an asynchronous test which fails. The asynchronous test will, even though it looks like synchronous code, it's an async function so it returns a promise. That promise rejects whenever the assertion fails. So two things worth noting here is you'll see here we're using node colon test. The node colon prefix can be used to import any node core module. But starting with the test module and likely with all modules added to node core moving forward, you have to use the node colon prefix. If you just try to use the word test here, it would actually fall back to trying to load from user land. And speaking of user land, the test runner itself is actually published on NPM. So right now the test runner exists in node 18 and 16. Node 14 is still supported, though. So a few people took the code from node core, kind of ported it to work in an NPM module, and published it. So you can just NPM install test if you're on node 14, and you'll still have access to all this functionality. So after you execute your test, this is what the output will look like. So this output is called tap, which stands for test anything protocol. And it's not the most easy for humans to parse, but you can do interesting things like, you know, pipe it into a different reporters and things like that, and have it formatted differently. But you can see here that we have okay 1, that's the first test, that was the synchronous passing test.
3. Test Runner Results and Future Work
The test runner passed one test and failed another. The test failure was due to an assertion that expected the value 1 to be equal to 2. The test summary showed that two tests were executed, with one passing and one failing. The entire process took about 11 milliseconds. Future work for the test runner includes implementing a tap parser for better reporting, building out reporters to transform tap output, and adding code coverage and mocking features. The test runner is still experimental, but no major breaking changes are expected. Check out the documentation and give it a try!
It passed in 1.87 milliseconds. And then the second test was not okay. Not okay is how tap indicates a failure. You can see that there was a test code failure. We expected the assertion... we asserted that the value 1 would be equal to 2, and clearly, it's not. So the test failed.
And then at the bottom, we have a little test summary. So there were two tests that were executed. One passed, one failed, zero were canceled, zero skipped. No to-do tests. And then the entire process took about 11 milliseconds.
So just some of the future work for the test runner. We have a pull request that's open right now for a tap parser. So that will allow us to do better reporting inside of the CLI runner. The CLI for every file that it's going to execute, it spawns a child process that generates its own tap. The way it works now is if there's a failure, then we just take all of the standard output and standard error for that file and display it. If no tests fail, then we kind of just say it passed and don't show any output. The tap parser will actually allow us to intelligently parse that output and display things a little more nicely. We also want to use the tap parser to build out reporters. As I said earlier, tap is not the prettiest thing to look at. We want to implement some reporters that can actually transform that into something a little easier for humans to read. Then we'd like to build in code coverage and mocking, just because these are two pretty significant features that really make a test runner feel mature, in my opinion. So the test runner is still listed as experimental, but I don't expect there to be a lot, if many at all, breaking changes in it. I have a link here to the documentation for it. I encourage everyone to go out and at least give it a try. That's everything I had. Thanks for coming.
Comments