Astro
Testing
Testing
By default, `getViteConfig()` will try to load an Astro config file in your project and apply it to the test environment.
As of Astro 4.8, if you need to customize the Astro configuration applied in your tests, pass a second argument to `getViteConfig()`:
```js
See the Astro + Vitest starter template on GitHub.
Vitest and Container API
You can natively test Astro components using the container API. First, setup vitest as explained above, then create a .test.js file to test your component:
test('Card with slots', async () => {
const container = await AstroContainer.create();
const result = await container.renderToString(Card, {
slots: {
default: 'Card content',
},
});
expect(result).toContain('This is a card');
expect(result).toContain('Card content');
});
End-to-end tests
Playwright
Playwright is an end-to-end testing framework for modern web apps. Use the Playwright API in JavaScript or TypeScript to test your Astro code on all modern rendering engines including Chromium, WebKit, and Firefox.
Installation
You can get started and run your tests using the VS Code Extension.
Alternatively, you can install Playwright within your Astro project using the package manager of your choice. Follow the CLI steps to choose JavaScript/TypeScript, name your test folder, and add an optional GitHub Actions workflow.
Create your first Playwright test
```html title="src/pages/index.astro"
---
---
<html lang="en">
<head>
<title>Astro is awesome!</title>
<meta name="description" content="Pull content from anywhere and serve it fast with Astro's next-gen islands architecture." />
</head>
<body></body>
</html>
```
Create a new folder and add the following test file in
src/test. Copy and paste the following test into the file to verify that the page meta information is correct. Update the value of the page<title>to match the page you are testing.import { test, expect } from '@playwright/test'; test('meta is correct', async ({ page }) => { await page.goto("http://localhost:4321/"); await expect(page).toHaveTitle('Astro is awesome!'); });:::tip[Set a
baseUrl] You can set"baseURL": "http://localhost:4321"in theplaywright.config.tsconfiguration file to usepage.goto("/")instead ofpage.goto("http://localhost:4321/")for a more convenient URL. :::
Running your Playwright tests
You can run a single test or several tests at once, testing one or multiple browsers. By default, your test results will be shown in the terminal. Optionally, you can open the HTML Test Reporter to show a full report and filter test results.
```sh
npx playwright test index.spec.ts
```
To see the full HTML Test Report, open it using the following command:
npx playwright show-report
:::tip Run your tests against your production code to more closely resemble your live, deployed site. :::
Advanced: Launching a development web server during the tests
You can also have Playwright start your server when you run your testing script by using the webServer option in the Playwright configuration file.
Here is an example of the configuration and commands required when using npm:
In
playwright.config.ts, add thewebServerobject and update the command value tonpm run preview.import { defineConfig } from '@playwright/test'; export default defineConfig({ webServer: { command: 'npm run preview', url: 'http://localhost:4321/', timeout: 120 * 1000, reuseExistingServer: !process.env.CI, }, use: { baseURL: 'http://localhost:4321/', }, });Run
npm run build, then runnpm run test:e2eto run the Playwright tests.
More information about Playwright can be found in the links below:
Cypress
Cypress is a front-end testing tool built for the modern web. Cypress enables you to write end-to-end tests for your Astro site.
Installation
You can install Cypress using the package manager of your choice. This will install Cypress locally as a dev dependency for your project.
Configuration
In the root of your project, create a cypress.config.js file with the following content:
page.get('title').should('have.text', 'Astro is awesome!')
page.get('h1').should('have.text', 'Hello world from Astro');
});
```
:::tip[Set a `baseUrl`]
You can set [`"baseUrl": "http://localhost:4321"`](https://docs.cypress.io/guides/end-to-end-testing/testing-your-app#Step-3-Configure-Cypress) in the `cypress.config.js` configuration file to use `cy.visit("/")` instead of `cy.visit("http://localhost:4321/")` for a more convenient URL.
:::
</Steps>
#### Running your Cypress tests
Cypress can be run from the command line or from the Cypress App. The App provides a visual interface for running and debugging your tests.
First, start the dev server so Cypress can access your live site.
To run our test from the previous example using the command line, execute the following command:
```shell
npx cypress run
Alternatively, to run the test using the Cypress App, execute the following command:
npx cypress open
Once the Cypress App is launched, choose E2E Testing, then select the browser to be used to run tests.
Once the test run is finished, you should see green check marks in the output confirming that your test passed:
Running: index.cy.js (1 of 1)
✓ titles are correct (107ms)
1 passing (1s)
:::note[Fail the test]
To check that your test really does work, you can change the following line in the index.astro file:
<body>
<h1>Hello world from Astro</h1>
<h1>Hello from Astro</h1>
</body>
Then run the test again. You should see a red "x" in the output confirming that your test failed. :::
Next steps
More information about Cypress can be found in the links below:
NightwatchJS
Nightwatch.js is a test automation framework with a powerful set of tools to write, run, and debug your tests across the web with built-in support for all major browsers and their mobile equivalents, as well as native mobile applications.
Installation
You can install NightwatchJS within your Astro project using the package manager of your choice. Follow the CLI steps to choose JavaScript/TypeScript, name your test folder, and select whether or not to include component testing and testing on mobile browsers.
Create your first Nightwatch test
```html title="src/pages/index.astro"
---
---
<html lang="en">
<head>
<title>Astro is awesome!</title>
<meta name="description" content="Pull content from anywhere and serve it fast with Astro's next-gen islands architecture." />
</head>
<body></body>
</html>
```
Create a new folder
src/test/and add the following test file:```js title="src/test/index.js" describe('Astro testing with Nightwatch', function () { before(browser => browser.navigateTo('http://localhost:4321/')); it("check that the title is correct", function (browser) { browser.assert.titleEquals('Astro is awesome!') }); after(browser => browser.end()); }); ```:::tip[Set a
baseUrl] You can set"baseURL": "http://localhost:4321"in thenightwatch.conf.jsconfiguration file to usebrowser.navigateTo("/")instead ofbrowser.navigateTo("http://localhost:4321/")for a more convenient URL. :::
Running your NightwatchJS tests
You can run a single test or several tests at once, testing one or multiple browsers. By default, your test results will be shown in the terminal. Optionally, you can open the HTML Test Reporter to show a full report and filter test results.
You can run the tests with the NightwatchJS VSCode Extension or using the CLI steps below:
```sh
npx nightwatch test/index.js
```
Additionally, you can run the tests against a specific browser using the `--environment` or `-e` CLI argument. If you don't have the relevant browser installed, Nightwatch will attempt to set it up for you using [Selenium Manager](https://www.selenium.dev/blog/2022/introducing-selenium-manager/):
```sh
npx nightwatch test/index.ts -e firefox
```
To see the full HTML Test Report, open it using the following command:
npx nightwatch test/index.ts --open
:::tip Run your tests against your production code to more closely resemble your live, deployed site. :::
More information about NightwatchJS can be found in the links below: