Testing the Waters With Deno

This ad is not shown to multipass and full ticket holders
React Summit US
React Summit US 2025
November 17 - 21, 2025
New York, US & Online
The biggest React conference in the US
Learn More
In partnership with Focus Reactive
Upcoming event
React Summit US 2025
React Summit US 2025
November 17 - 21, 2025. New York, US & Online
Learn more
Bookmark
Rate this content

Let’s dive into the world of testing with Deno’s built-in test runner! Come on in, the water’s lovely!

We’ll kick things off by exploring the principles of effective testing, perfect for beginners dipping their toes in. Then, we’ll introduce Deno’s out-of-the-box test runner.

With the Deno.test API, you’ll be jetting in no time. We’ll cover how to write assertions and see firsthand how they help ensure your code behaves as expected.

To wrap things up, we’ll explore writing tests that will be familiar to those experienced with Jest and Vitest, using Deno and its standard library. You’ll gain practical knowledge on how simple Deno makes setting up your testing environment, structuring your test cases, and optimizing your testing workflow.

Whether you’re a seasoned developer or new to Deno, this talk will provide the tools and knowledge you need to confidently navigate the waters of testing in your Deno projects and make a splash with your testing skills!

This talk has been presented at JSNation 2025, check out the latest edition of this JavaScript Conference.

FAQ

Yes, Deno supports snapshot testing out of the box, which helps in verifying complex object models.

Deno offers a 'batteries-included' environment for testing, with built-in TypeScript compiler, testing, and linting tools, reducing the need for extensive configuration.

Yes, tests written in Jest or Vitest will likely run in Deno with minimal changes.

Deno has a built-in TypeScript compiler, allowing you to write tests in TypeScript without needing additional setup.

Deno provides various assertion tools like assertEquals, assertArrayIncludes, assertAlmostEquals, and assertThrows for expressive testing.

Yes, Deno can generate code coverage reports and supports JUnit style XML reports for integration with CI/CD pipelines.

The official Deno documentation is the primary source, but feedback is welcome to improve its clarity and effectiveness.

Yes, Deno supports BDD style testing using the 'describe' and 'it' functions from its standard library.

Yes, Deno offers a watch flag to automatically rerun tests on file changes.

Deno currently lacks robust support for module and package mocking, making tools like Vitest a preferred choice for such needs.

Jo Franchetti
Jo Franchetti
24 min
12 Jun, 2025

Comments

Sign in or register to post your comment.
Video Summary and Transcription
Today's discussion delves into testing in Deno, emphasizing its simplicity and built-in tooling. Deno offers a seamless testing experience for developers, allowing tests to be written in TypeScript without extensive setup. The platform supports BDD-style testing, provides various assertion types, advanced features like code coverage and snapshot testing, and allows for filtering tests based on keywords. Additionally, Deno facilitates component testing, dependency mocking, and migration of test suites from Jest to Deno with minimal changes.
Available in Español: Testing the Waters With Deno

1. Introduction to Testing in Deno

Short description:

Today's discussion focuses on testing in Deno, highlighting its simplicity and built-in tooling compared to traditional setups like Jest or Mocker. Deno allows writing tests in TypeScript without extensive configuration, making testing an integral part of the developer experience. Setting up a basic Deno project involves using Deno init to create test files and defining test cases using Deno.test. Tests can include assertions, named functions, ignored tests, and tests with multiple steps for comprehensive testing.

Today, as introduced, we're going to be talking about testing in Deno. So first of all, how many of you write tests in your code today? Good, that's what we like to see. The rest of you, what are you doing? And I'm assuming you're mostly using Jest, VTest, Mocker, Jasmine, maybe? Okay, interesting. And while you were setting those up, how many of you remember the hell of configuring your correct TypeScript compiler, emitting the right source maps, and all the other chaos that you have in setting up your testing environment and your test runners? The nice thing about Deno is we've got this sort of batteries-included environment. Our approach to tooling is that it should just be part of your entire developer experience. So Deno has your TypeScript compiler, it has your testing, your linting, everything already built in, which means you can write your tests in TypeScript when you're using Deno. You don't need to do a whole load of configuration. So I know, you know, you're already used to testing, you've written tests before in usually, I assume Node. So I'm not going to do a big intro into what is testing and why should you be testing, but I am going to sort of talk you through the Deno testing tool. It's a slightly opinionated way of authoring tests. But if you're using something like Jest or Mocker, your tests will likely also run in Deno with very little changes.

So I'm going to assume that we have a computer that has already got Deno installed and I'm going to set us up with a very basic Deno project. So I'm just going to say Deno init, can you see this, by the way, is that big enough? A little bit bigger? Excellent. So what Deno init has done is it set me up with a basic project here. So I've got a main.ts, which has got a really basic add function, and I've got a main.test. So this is what we're going to use to write our tests in. Deno.test allows us to define our actual test cases, and what we've done here is we've imported our add function from our main.ts, and we've imported this assert equals, which is going to allow us to do some assertions. And we can do both anonymous functions and name functions if we want to, so in fact, let's cheat this. I'm going to just paste that in here. So we can also have a test with a named function. So here we're testing negative numbers. We can also do an ignored test if we wanted to, so sure, go on, Copilot. Nice. Okay, so this test is going to be ignored because we've used ignored true there. And if we want to run a test with multiple steps in it, for example, we can absolutely do that too. So let's test with steps. So what I want to do is I'm going to, in fact, I'm going to cheat this one as well and just paste it in and then we'll talk through it. So we can set up something that is going to run before all of our tests. Then we have our t, which is going to allow us to step through so we can define multiple steps that we might want to do in our test. And each step can have its own name and is going to be reported separately in our test results.

2. Executing and Customizing Tests in Deno

Short description:

Let's run Deno test to execute our tests and observe the results. Deno supports BDD style testing, allowing the use of describe, it, and before each. The standard library provides essential functionalities like expect and allows flexibility in test syntax, including descriptive test cases and negative tests.

So why don't we try and actually run this. So let's run dno test. And we can see we've got some tests, some of our tests have passed. Our ignored one has been ignored and our steps have stepped through. So we can see here we have with steps running before all of our steps, step one, step two. We can see that we've done some nice steps through our tests.

If you're coming from something like Mocha or Jest, we also have the BDD style testing. So if you'd rather use something like describe and it, you absolutely can do that. So we can instead of our equals, we can use describe and it and before each. These are coming from the testing BDD library. These are part of the dno standard library, which is just a whole load of code that you will find yourself needing often in your projects. The standard library offers those to you.

Let's do, there we go. And we can also add expect. In fact, we need to keep our add in there, don't we? And this one is in the expect module. There we go. And then if we want to change up our test syntax, we absolutely can do. So we can do a describe instead. So we're going to describe our add function and we will say inside of here, it should return the sum of two numbers. Yep, that looks nice. Yes. Sure. And we can add in our negative tests as well. Here we go. Yep. Thank you, CoPilot. Okay. So these should be a bit more recognizable to you if you're coming from Jest or Mocha. And we can also use our before each if we want to. We can say before each, sure.

QnA

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Network Requests with Cypress
TestJS Summit 2021TestJS Summit 2021
33 min
Network Requests with Cypress
Top Content
Cecilia Martinez, a technical account manager at Cypress, discusses network requests in Cypress and demonstrates commands like cydot request and SCI.INTERCEPT. She also explains dynamic matching and aliasing, network stubbing, and the pros and cons of using real server responses versus stubbing. The talk covers logging request responses, testing front-end and backend API, handling list length and DOM traversal, lazy loading, and provides resources for beginners to learn Cypress.
Testing Pyramid Makes Little Sense, What We Can Use Instead
TestJS Summit 2021TestJS Summit 2021
38 min
Testing Pyramid Makes Little Sense, What We Can Use Instead
Top Content
Featured Video
Gleb Bahmutov
Roman Sandler
2 authors
The testing pyramid - the canonical shape of tests that defined what types of tests we need to write to make sure the app works - is ... obsolete. In this presentation, Roman Sandler and Gleb Bahmutov argue what the testing shape works better for today's web applications.
Full-Circle Testing With Cypress
TestJS Summit 2022TestJS Summit 2022
27 min
Full-Circle Testing With Cypress
Top Content
Cypress is a powerful tool for end-to-end testing and API testing. It provides instant feedback on test errors and allows tests to be run inside the browser. Cypress enables testing at both the application and network layers, making it easier to reach different edge cases. With features like AppActions and component testing, Cypress allows for comprehensive testing of individual components and the entire application. Join the workshops to learn more about full circle testing with Cypress.
Test Effective Development
TestJS Summit 2021TestJS Summit 2021
31 min
Test Effective Development
Top Content
This Talk introduces Test Effective Development, a new approach to testing that aims to make companies more cost-effective. The speaker shares their personal journey of improving code quality and reducing bugs through smarter testing strategies. They discuss the importance of finding a balance between testing confidence and efficiency and introduce the concepts of isolated and integrated testing. The speaker also suggests different testing strategies based on the size of the application and emphasizes the need to choose cost-effective testing approaches based on the specific project requirements.
Playwright Test Runner
TestJS Summit 2021TestJS Summit 2021
25 min
Playwright Test Runner
Top Content
The Playwright Test Runner is a cross-browser web testing framework that allows you to write tests using just a few lines of code. It supports features like parallel test execution, device emulation, and different reporters for customized output. Code-Gen is a new feature that generates code to interact with web pages. Playwright Tracing provides a powerful tool for debugging and analyzing test actions, with the ability to explore trace files using TraceViewer. Overall, Playwright Test offers installation, test authoring, debugging, and post-mortem debugging capabilities.
Everyone Can Easily Write Tests
TestJS Summit 2023TestJS Summit 2023
21 min
Everyone Can Easily Write Tests
Playwright is a reliable end-to-end testing tool for modern web apps that provides one API, full isolation, fast execution, and supports multiple languages. It offers features like auto-weighting, retrying assertions, seamless testing of iframes and shadow DOM, test isolation, parallelism, and scalability. Playwright provides tools like VS Code extension, UiMode, and Trace Viewer for writing, debugging, and running tests. Effective tests prioritize user-facing attributes, use playwright locators and assertions, and avoid testing third-party dependencies. Playwright simplifies testing by generating tests, providing code generation and UI mode, and allows for easy running and debugging of tests. It helps in fixing failed tests and analyzing DOM changes, fixing locator mismatches, and scaling tests. Playwright is open source, free, and continuously growing.

Workshops on related topic

Designing Effective Tests With React Testing Library
React Summit 2023React Summit 2023
151 min
Designing Effective Tests With React Testing Library
Top Content
Featured Workshop
Josh Justice
Josh Justice
React Testing Library is a great framework for React component tests because there are a lot of questions it answers for you, so you don’t need to worry about those questions. But that doesn’t mean testing is easy. There are still a lot of questions you have to figure out for yourself: How many component tests should you write vs end-to-end tests or lower-level unit tests? How can you test a certain line of code that is tricky to test? And what in the world are you supposed to do about that persistent act() warning?
In this three-hour workshop we’ll introduce React Testing Library along with a mental model for how to think about designing your component tests. This mental model will help you see how to test each bit of logic, whether or not to mock dependencies, and will help improve the design of your components. You’ll walk away with the tools, techniques, and principles you need to implement low-cost, high-value component tests.
Table of contents- The different kinds of React application tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting DOM elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RTL tests and how to handle them
Prerequisites- Familiarity with building applications with React- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Testing Library- Machine setup: Node LTS, Yarn
Detox 101: How to write stable end-to-end tests for your React Native application
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
Workshop
Yevheniia Hlovatska
Yevheniia Hlovatska
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
API Testing with Postman Workshop
TestJS Summit 2023TestJS Summit 2023
48 min
API Testing with Postman Workshop
Top Content
WorkshopFree
Pooja Mistry
Pooja Mistry
In the ever-evolving landscape of software development, ensuring the reliability and functionality of APIs has become paramount. "API Testing with Postman" is a comprehensive workshop designed to equip participants with the knowledge and skills needed to excel in API testing using Postman, a powerful tool widely adopted by professionals in the field. This workshop delves into the fundamentals of API testing, progresses to advanced testing techniques, and explores automation, performance testing, and multi-protocol support, providing attendees with a holistic understanding of API testing with Postman.
1. Welcome to Postman- Explaining the Postman User Interface (UI)2. Workspace and Collections Collaboration- Understanding Workspaces and their role in collaboration- Exploring the concept of Collections for organizing and executing API requests3. Introduction to API Testing- Covering the basics of API testing and its significance4. Variable Management- Managing environment, global, and collection variables- Utilizing scripting snippets for dynamic data5. Building Testing Workflows- Creating effective testing workflows for comprehensive testing- Utilizing the Collection Runner for test execution- Introduction to Postbot for automated testing6. Advanced Testing- Contract Testing for ensuring API contracts- Using Mock Servers for effective testing- Maximizing productivity with Collection/Workspace templates- Integration Testing and Regression Testing strategies7. Automation with Postman- Leveraging the Postman CLI for automation- Scheduled Runs for regular testing- Integrating Postman into CI/CD pipelines8. Performance Testing- Demonstrating performance testing capabilities (showing the desktop client)- Synchronizing tests with VS Code for streamlined development9. Exploring Advanced Features - Working with Multiple Protocols: GraphQL, gRPC, and more
Join us for this workshop to unlock the full potential of Postman for API testing, streamline your testing processes, and enhance the quality and reliability of your software. Whether you're a beginner or an experienced tester, this workshop will equip you with the skills needed to excel in API testing with Postman.
Monitoring 101 for React Developers
React Summit US 2023React Summit US 2023
107 min
Monitoring 101 for React Developers
Top Content
WorkshopFree
Lazar Nikolov
Sarah Guthals
2 authors
If finding errors in your frontend project is like searching for a needle in a code haystack, then Sentry error monitoring can be your metal detector. Learn the basics of error monitoring with Sentry. Whether you are running a React, Angular, Vue, or just “vanilla” JavaScript, see how Sentry can help you find the who, what, when and where behind errors in your frontend project. 
Workshop level: Intermediate
Testing Web Applications Using Cypress
TestJS Summit - January, 2021TestJS Summit - January, 2021
173 min
Testing Web Applications Using Cypress
Top Content
Workshop
Gleb Bahmutov
Gleb Bahmutov
This workshop will teach you the basics of writing useful end-to-end tests using Cypress Test Runner.
We will cover writing tests, covering every application feature, structuring tests, intercepting network requests, and setting up the backend data.
Anyone who knows JavaScript programming language and has NPM installed would be able to follow along.
Best Practices for Writing and Debugging Cypress Tests
TestJS Summit 2023TestJS Summit 2023
148 min
Best Practices for Writing and Debugging Cypress Tests
Top Content
Workshop
Filip Hric
Filip Hric
You probably know the story. You’ve created a couple of tests, and since you are using Cypress, you’ve done this pretty quickly. Seems like nothing is stopping you, but then – failed test. It wasn’t the app, wasn’t an error, the test was… flaky? Well yes. Test design is important no matter what tool you will use, Cypress included. The good news is that Cypress has a couple of tools behind its belt that can help you out. Join me on my workshop, where I’ll guide you away from the valley of anti-patterns into the fields of evergreen, stable tests. We’ll talk about common mistakes when writing your test as well as debug and unveil underlying problems. All with the goal of avoiding flakiness, and designing stable test.