Testing the Waters With Deno

This ad is not shown to multipass and full ticket holders
React Summit US
React Summit US 2025
November 18 - 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 18 - 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.

3. Utilizing Assertions in Deno

Short description:

Run assertions before tests to ensure proper functionality and syntax familiarity. Deno provides various assertion types like equals, array includes, almost equals, and more. Utilize built-in tools for string, type, and Boolean assertions to enhance test expressiveness.

Put some text out there. And this will run before each of our tests. So if we try and run that again. What has CoPilot missed? What are you expecting here? A cozy curly? There we go. So very similar output to what we saw before. But perhaps with syntax that you're more used to using.

And we saw briefly the assert package earlier. So we can do a whole load of different types of assertions as well. So we can assert equals, assert array includes, assert almost equals. So we saw our basic assert earlier. I'm just destroying the stage. Don't mind me. But we could also do, for example, let's take it all the way back to our assert.

There we go. So we have our add. We can have assert in here. We could assert array includes. And we can... So we've seen that assert equals. We could do something like assert array includes in here. We could do assert throws. There's a whole load of different built-in tools in here for you. And there's an instance of... Missing an S. There we go. Nice. Let's try running these. Nice. There's also things like string assertions, type and Boolean assertions. Just here to help you write more expressive tests.

4. Advanced Testing Features in Deno

Short description:

Explore Deno's comprehensive testing features like assert almost equals, throws, and instance of. Utilize the watch flag to continuously run tests and handle failures efficiently. Deno's code coverage tools offer insights into test coverage, with options to customize report storage locations.

And there's things like assert almost equals to help you compare things like floating point numbers. As I mentioned, we have our assert throws, assert instance of. This comprehensive offering covers most testing needs. Typing Deno test repeatedly can be tedious, so the watch flag is available to monitor test changes and run continuously.

Using Deno test with the watch flag can help detect test failures, like missing array elements. Additionally, you can apply filters to skip specific tests based on keywords. Deno supports built-in code coverage functionality, enabling the generation of coverage reports. Running tests with coverage flag provides insights into the test coverage of main files.

For a detailed coverage report, Deno allows specifying a directory to store the coverage information. By utilizing Deno coverage commands, you can easily view the coverage report directly in the terminal. The flexibility to choose the destination directory for coverage reports adds convenience to managing test coverage results.

5. Filtering Tests and Code Coverage in Deno

Short description:

Deno allows filtering tests based on keywords like 'assert' for focused test runs. Code coverage tools enable generating reports to analyze test coverage in main files. Customize coverage reports by selecting destination directories for storage.

And you can also filter if you want to maybe skip a test. So I could say, for example... Let me put that back. Deno test minus watch. And then I could say filter. And I want to filter anything that has assert in it. And that's going to only run the tests that have the word assert in the name.

Deno also supports code coverage out of the box. So you can generate a code coverage report. So let's do that. Deno test minus minus coverage. That's gonna show me how much of my main TS is covered by my tests. So test minus minus coverage is going to run the tests and then generate a coverage report.

I could also do Deno coverage. Which is just going to display the coverage report in the terminal. We can also, if we want to, select a directory to save that coverage report to. So we could do Deno test minus minus coverage. And then our folder name for where we want to send the coverage to. It should have created a little folder for us. There we go. Which contains our coverage report.

6. Snapshot Testing and Coverage Reports in Deno

Short description:

Deno provides JUnit style XML support for coverage reports, aiding CICD pipelines. Test coverage analysis reveals areas for improvement, like untested functionalities. Snapshot testing in Deno validates complex object models for expected behavior.

And we also have support for JUnit style XML. If you would rather your reports are in that format. Useful for CICD pipelines and other tools that are expecting that format of coverage report.

I mean, we can see here that we've only covered 50% of our main TS because we've basically tested only the add function. We haven't tested this check for import meta. That's fine. We could improve our test coverage if we wanted to.

Deno also supports snapshot testing out of the box. Which can be useful for asserting whether or not your complicated object models are the way that you would expect them to be.

7. Setting Up Snapshot Tests in Deno

Short description:

Setting up snapshot tests by importing snapshots and creating basic objects. Establishing snapshot validation through Deno tests. Creating and updating snapshots for testing purposes.

So let's set up a snapshot test. I'm just going to delete all of this. I'm going to import. Insert snapshot. From JSR colon sdd. Insert snapshot. Yep, that's what we want. And then let's cheat this one again because we're very low on time.

We got our... Nope. We're just going to set up a really basic object here. So we'll say, sure, that looks nice. And then we will do a weight assert snapshot. And now when we run our test, we want to establish that snapshot.

We will do Deno test minus R minus W, which is going to give us read and write permission. So Deno's going to be able to read the snapshot file, write to a snapshot file, and we will say minus, minus, minus, update. What have I missed? Testing snapshot. There we go. Cool, so that should have created some snapshots for us. And we can see in here that's created a snapshot. We would then, if we were running our tests again.

8. Testing Snapshot Changes and App Setup in Deno

Short description:

Testing snapshot changes with Deno test minus A for validation. Demonstrating an entire app setup with an HTTP server using Hono installation.

So maybe something changes in our object and we want to test whether or not that snapshot is matching. We would then say Deno test minus A, and we can double check that our snapshot is matching.

Okay, two minutes to show you an entire app in memory. So I know your tests are a lot more complicated than this. I know your apps are a lot more complicated than this. You want to be testing bigger applications.

So what we're going to do is I'm going to cheat and just drag in an entire app. So here we have a nice basic. This is just going to set us up a little HTTP server. We're using Hono to do that. Going to install Hono, hopefully. There we go.

9. Component Testing and Dependency Mocking in Deno

Short description:

Setting up basic app for testing HTTP server responses and weather data. Implementing component testing and mocking dependencies for weather service.

Okay, just a super basic app, which is going to set us up an endpoint at slash weather, which has some weather information in it. And in here, we're doing some tests. So we're testing that we've correctly set up our HTTP server. We're testing that at the root, we get a hello world response. And we're testing that on the weather route, we get some sort of weather data. And then we're testing that on anything else, we get a 404.

So we can run Deno test in here. Oh, let's place that and place that. Let's try that again. And I have to run this with permissions because we're doing stuff over the network. So I just gave it the minus A there to get its permissions. So what we're doing here is sort of component testing, we're stepping through and testing that our little HTTP server is doing exactly what we expect it to do.

But we're dependent on this bit of weather data here. And we might want to maybe mock that up. And we absolutely can do that as well. So let's just jump into this example here. So we can instead, we can inject that weather dependency instead. So we will create a new file that is our weather service. This is where our weather data is going to be. We will inject that into our main TS. And then in our main TS, we can mock up some different weather maybe. So let's have a look. We can now create our fake weather service. And we can double check whether or not our app is going to work in the way that we expect it to if the weather changes, for example.

QnA

Introduction to Deno Testing and Swag Surprises

Short description:

Introduction to basic Deno testing with provided libraries and a glimpse into dependency testing and swag surprises.

Awesome. So that's a very sort of, I'm going to say, ghetto approach to dependency testing. It's a very basic example. But I hope that this was sort of a whirlwind introduction to very simple testing in Deno. We didn't have to configure anything. We've got all our useful imports from the Deno standard library. So yeah, go and test with Deno. Oh, there's stickers up the front. So come grab stickers. And I also have a giant box of beautiful swag, because Deno isn't just a JavaScript runtime. It's also a clothing brand now, apparently.

We have a lot of questions for you. We don't have an awful lot of time. Oh, sorry. No worries whatsoever. There is also going to be a Q&A station downstairs after this. And they can find you there, right? All right. Let's get right into it.

What features of Jest and Vitest are not supported by Deno right now and might need a rewrite? As in, that Deno might need a rewrite of? That we need to rewrite. So I don't know. Take your pick. Who needs rewriting? I mean, the Deno test framework, I will fully admit, is not as fully featured as Jest and Vitest. So I absolutely recommend using those, but perhaps using them alongside the Deno testing framework. You know, they absolutely will work in Deno. So yes, I will admit there are an awful lot of features that are in Jest and Vitest that aren't in the Deno testing framework. All right. You know what you did here, right? By introducing that there are stickers and swag, this is going to be an interesting one. All right. How do module and package mocking look like? Or how does module and package mocking look like in Deno tests? It doesn't. It doesn't look.

Module Dependency Testing Limitations in Deno

Short description:

Module dependency testing limitations in Deno, recommendation for Vitest, and addressing concerns about documentation clarity.

It doesn't. It doesn't look. Yeah. Sadly, module dependency testing isn't really possible in Deno test at the moment. So yeah, the example that I showed is a super-duper basic example. But yes, you'll want to be using likely Vitest. Vitest is my fave if that's what you want to be doing. All right.

Maybe a comment for you. The official documentation page looks a bit fuzzy. Is there a better source to find more information? I mean, I feel like going to your talk would be a good place to get started. Come find me, the person who says it looks fuzzy, because the documentation is my pride and joy. I write the Deno documentation. So if it's not looking good to you, come show me what's not looking good and I will fix it up because... Yeah. All right. All right.

Just quickly going through them. Let's do one more question. So a certain complex nested object can become quite cumbersome in Vitest and Jest. Is it the same for Deno? It is. Yeah. Sadly. Yeah. Sadly. Yeah, I don't really have an answer... I wanted to ask what is the upside. All right. Cool. We'll do one more, just to make sure that we end on a high note.

Test Suite Migration to Deno Runner

Short description:

Rewriting test suites from Jest to Deno, framework compatibility, minimal changes for Vitest and Jest with Deno.

Is there an easy way to rewrite a test suite from, for instance, Jest to Deno Runner? Is there any framework that is easier to change to Deno than others? Oh, you know what? I don't know which would be the easiest. There should be very minimal changes to run your tests in Deno. So TouchWood should absolutely run fine if you're using Vitest with Deno. If you're using Jest with Deno, these should all work fine. If you want to swap it over, obviously, there is gonna be a bit of editing to use the Deno test functionality. But yeah, I mean, maybe it's something we should think about for the future as a conversion tool, if that would be something that people might like. But it doesn't exist yet. All right.

Well, Jo, thank you so much for your talk again. My pleasure. Thank you.

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.