Subscription app
https://github.com/n8n-io/subscription-app.git
npm install
npm run dev
npm run build:test
npm run build:prod
npm run test:unit
npm run test:e2e:dev
This runs the end-to-end tests against the Vite development server. It is much faster than the production build.
But it's still recommended to test the production build with test:e2e before deploying (e.g. in CI environments):
npm run build
npm run test:e2e
npm run lint