Book Image

Svelte with Test-Driven Development

By : Daniel Irvine
Book Image

Svelte with Test-Driven Development

By: Daniel Irvine

Overview of this book

Svelte is a popular front-end framework used for its focus on performance and user-friendliness, and test-driven development (TDD) is a powerful approach that helps in creating automated tests before writing code. By combining them, you can create efficient, maintainable code for modern applications. Svelte with Test-Driven Development will help you learn effective automated testing practices to build and maintain Svelte applications. In the first part of the book, you’ll find a guided walkthrough on building a SvelteKit application using the TDD workflow. You’ll uncover the main concepts for writing effective unit test cases and practical advice for developing solid, maintainable test suites that can speed up application development while remaining effective as the application evolves. In the next part of the book, you’ll focus on refactoring and advanced test techniques, such as using component mocks and writing BDD-style tests with the Cucumber.js framework. In the final part of the book, you’ll explore how to test complex application and framework features, including authentication, Svelte stores, and service workers. By the end of this book, you’ll be well-equipped to build test-driven Svelte applications by employing theoretical and practical knowledge.
Table of Contents (22 chapters)
1
Part 1: Learning the TDD Cycle
8
Part 2: Refactoring Tests and Application Code
16
Part 3: Testing SvelteKit Features

Displaying SvelteKit form errors

In this section, we’ll add tests and functionality to support passing in a new form prop into the BirthayForm component.

Let’s start with a new test:

  1. In the src/routes/birthdays/BirthdayForm.test.js file, add a new nested describe block with a single test, as shown in the following code snippet. It checks that if the error property is set on the form prop, then that error must be displayed somewhere on the page:
    describe('validation errors', () => {
      it('displays a message', () => {
        render(BirthdayForm, {
          form: {
            error: 'An error'
          }
        });
        expect(
          screen.queryByText('An error')
        ).toBeVisible();
      });
    });
  2. Make that...