🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

jasme

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jasme

simplistic node.js jasmine 3.x launcher

6.0.0
latest
Source
npm
Version published
Weekly downloads
8
-55.56%
Maintainers
1
Weekly downloads
 
Created
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

jasmine

FAQs

Package last updated on 02 Mar 2018

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