zombiewalk

Command line tool for unit testing under zombie.js

Usage no npm install needed!

<script type="module">
  import zombiewalk from 'https://cdn.skypack.dev/zombiewalk';
</script>

README

Zombiewalk

Command line tool that tests your code under zombie.js.

Installation

sudo npm install -g zombiewalk

Usage

Qunit test:

zombiewalk --url path_to_test.html

Reporters

You can change command output by specifying reporter.

zombiewalk --reporter reporter_name_or_path

List of all buld-in reporters:

zombiewalk --list

Currently there are 2 build-in reporters:

  • default: Output inspired by qunit
  • minimal: Prints OK if tests passed and FAILED otherwise

You can always provide a custom reporter. If you want to create your own reporter examine lib/reporter/minimal.js to see what methods you need to implement.

Controllers

List of all build-in controllers:

zombiewalk --list

In version 0.1.0 there is only one controller: qunit. It enables you to run qunit tests under zombie.js without any source modyfications.

More controllers comming soon.

Status

Under construction.

Tests Build Status

npm test