Best of JestSeptember 2022

  1. 1
    Article
    Avatar of auth0Auth0·4y

    Testing React Applications with Jest

    MockingJest allows you to mock objects in your test files. You can turn on automatic mocking with automock which will mock every component/object that the component is part of your project. For the first test, we'll write a simple test that ensures that Jest was set up correctly and that it can run a test successfully.

  2. 2
    Article
    Avatar of redwoodjsRedwoodJS·4y

    Redwood 3.0.0 is now available!

    Redwood can now fetch data from your GraphQL API at build-time. Fastify v4.0 bumps the version of Prisma from v3.1.0. WebAuthn adds a new cookie, which has a separate expiration date from the regular session cookie. If the user comes back after 24 hours they simply scan their fingerprint again.

  3. 3
    Article
    Avatar of circleCircleCI·4y

    Automate testing for a Vue.js application

    Vue.js is a progressive framework for building reusable components for the web user interface. In this tutorial, I will lead you through building a simple listing application that shows the names and roles of users. You will also configure a continuous integration pipeline for automating testing. In the tutorial, you will alsoConfigure a continuous Integration pipeline forAutomating testing. For more information on how to use Vue and how to build the application.