Mirror: React hooks for accessible, common web interactions. UI super powers without the UI.
1/// <reference types="cypress" />
2// ***********************************************************
3// This example plugins/index.js can be used to load plugins
4//
5// You can change the location of this file or turn off loading
6// the plugins file with the 'pluginsFile' configuration option.
7//
8// You can read more here:
9// https://on.cypress.io/plugins-guide
10// ***********************************************************
11
12const { startDevServer } = require('@cypress/vite-dev-server');
13
14/**
15 * @type {Cypress.PluginConfig}
16 */
17module.exports = (on, _config) => {
18 on('dev-server:start', options => startDevServer({ options }));
19};