New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

elm-spec-runner

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elm-spec-runner

Node CLI for Elm-Spec

  • 2.5.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

elm-spec-runner

Node CLI for Elm-Spec

Install

$ npm install --save-dev elm-spec-runner

Usage

Use elm-spec-runner to run elm-spec suites from the command line.

$ elm-spec [options]

By default, elm-spec executes a spec suite in JSDOM. Note that while this is probably the fastest way to execute specs, JSDOM does have limitations. For example, JSDOM does not calculate layout positions for HTML elements, so any specs that describe layout in precise ways may fail unexpectedly.

For the most realistic execution environment, you should run specs in a real browser. To run your specs in Chromium, simply provide chromium (or another valid value) for the --browser option.

Note: elm-spec will result in a non-zero exit code if any observations are rejected or an error prevents the spec suite from running to completion.

Options

--elm -- Specify path to elm executable. Defaults to elm

--specRoot -- Specify the root directory for specs; should contain the elm.json file for the specs. Defaults to ./specs

--specs -- Specify a glob for spec modules, relative to specRoot. Defaults to ./**/*Spec.elm

--browser -- Specify the browser environment for the specs: jsdom, chromium, webkit, firefox, remote. If remote is selected, a URL will be provided; visit the URL to run the specs. Defaults to jsdom.

--visible -- Show the browser while the specs are running. Does nothing if the browser is jsdom or remote.

--watch -- Rerun the spec when files change in directories listed in the source-directories of your specs' elm.json file.

--parallel -- Run scenarios in parallel, up to the number of CPU cores. This can lower spec suite run time for larger spec suites. Does nothing if the browser is remote.

--endOnFailure -- Stop the spec suite run on the first failure.

--css -- Path to a CSS file to load in the browser, relative to the current directory. You may specify multiple css files.

--help -- Print options

Keywords

FAQs

Package last updated on 20 Nov 2022

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