Socket
Socket
Sign inDemoInstall

jasme

Package Overview
Dependencies
18
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    jasme

simplistic node.js jasmine 3.x launcher


Version published
Weekly downloads
7
decreased by-80.56%
Maintainers
1
Install size
1.16 MB
Created
Weekly downloads
 

Readme

Source

build status

Jasme

simplistic node.js jasmine 3.1.x launcher, created to compensate the lack of jasmine 3 support in jamine-node

Features

  • you don't have to specify or create jasmine config file (you still can though)
  • you can specify files or glob patterns as command line parameters
  • nice console reporter included by default (jasmine-spec-reporter)
  • you can export results as JUnit xml
  • if no paths is provided, then it tries to autodetect your spec dir

Usage

Option a: install globally (-g):

npm install -g jasme

jasme [--output=junit_xml_dir] [--noColor] [--boot=boot_script] [spec_mask...]

Option b: install for specific project:

npm install --save-dev jasme

node node_modules/jasme/run.js ...
# ... or for *nix ppl simply ...
node_modules/jasme/run.js ...

Options

  • noColor - disables ANSI color output
  • output=... - generates junit xml output
  • boot=... - runs a bootstrap script, where you can add helpers etc.

Examples

# Run all `*.js` files in given dir:
jasme tests/my_specs

# run only specific files using glob syntax (note the quotes!):
jasme 'tests/feature_a/**/*.*Spec.js' 'tests/feature_b/*Spec.js'

# run specs in a default dir and export result to "target" dir
jasme --output=target tests

# let jasme find my tests (in either "spec", "specs", "test" or "tests" dirs)
jasme

Keywords

FAQs

Last updated on 02 Mar 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc