Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@georges-tech/rollup-dev-server

Package Overview
Dependencies
Maintainers
7
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@georges-tech/rollup-dev-server

Launches Rollup Dev Server for Component Testing

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
7
Weekly downloads
 
Created
Source

@georges-tech/rollup-dev-server

Note this package is not meant to be used outside of cypress component testing.

Install @cypress/vue or @cypress/react to get this package working properly

To install @georges-tech/rollup-dev-server in you component testing environment,

  1. Install it yarn add @georges-tech/rollup-dev-server
  2. Add it to cypress/plugins/index.js
import { startDevServer } from '@georges-tech/rollup-dev-server'

module.exports = (on, config) => {
  on('dev-server:start', async (options) => startDevServer({ options }))

  return config
}

API

startDevServer takes an object of options.

  • options (required): this contains various internal configuration. It's provided as the first argument to the dev-server:start event. Just make sure you pass it to the startDevServer.
  • rollupConfig (optional): the rollup config used by your application.

Tests

Rollup-dev-server integrate a cypress configuration for testing this package.

Cypress folder contains :

  • components: Test files
  • support: Those files will be loaded in cypress environment
  • plugins.js: Required to start dev server

You can find a default rollup.config.js for typescript: here.

After installing dependencies with yarn install, you need to build project with yarn build. Then, you can start cypress test by using :

  • yarn cy:open will open a chrome browser to test and see results.
  • yarn cy:run will execute tests inside your terminal.

Changelog

Changelog

FAQs

Package last updated on 01 Jul 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc