![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
cypress-vite
Advanced tools
Run Cypress specs using Vite
The cypress-vite
plugin is a Cypress preprocessor
that allows you to transform and run Cypress e2e specs using
Vite.
import.meta
,
etc. in e2e testsInstall the cypress-vite
plugin:
npm install --save-dev cypress-vite
yarn add --dev cypress-vite
pnpm add --save-dev cypress-vite
For Cypress 10, add the following to your cypress.config.ts
file:
import { defineConfig } from 'cypress'
import vitePreprocessor from 'cypress-vite'
export default defineConfig({
e2e: {
setupNodeEvents(on) {
on('file:preprocessor', vitePreprocessor())
},
},
})
For Cypress 9 and earlier, add the following to your cypress/plugins/index.js
file:
const vitePreprocessor = require('cypress-vite')
/**
* @type {Cypress.PluginConfig}
*/
module.exports = (on, config) => {
on('file:preprocessor', vitePreprocessor())
}
You can simply pass the vitePreprocessor
function the path to your Vite config
file:
import path from 'path'
import { defineConfig } from 'cypress'
import vitePreprocessor from 'cypress-vite'
export default defineConfig({
e2e: {
setupNodeEvents(on) {
on(
'file:preprocessor',
vitePreprocessor(path.resolve(__dirname, './vite.config.ts')),
)
},
},
})
Thanks to Adam Lynch for inspiration and initial implementation.
Distributed under the MIT license.
FAQs
Run Cypress specs using Vite
The npm package cypress-vite receives a total of 20,818 weekly downloads. As such, cypress-vite popularity was classified as popular.
We found that cypress-vite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.