reftest-list-parser

1.0.1 • Public • Published

reftest-list-parser Build Status

reftest.list(reference test list) file parser in JavaScript

Installation

 npm install reftest-list-parser

Usage

This library parse following format list:

# comment
== a.html ./b.html
!=  ../c.html  d.html

to json:

[
  {
    "targetA": "a.html",
    "targetB": "./b.html",
    "compareOperator": "=="
  },
  {
    "targetA": "../c.html",
    "targetB": "d.html",
    "compareOperator": "!="
  }
]

written by js:

var fs = require("fs");
var parse = require("reftest-list-parser").parse;
var text = fs.readFileSync("reftest.list", "utf-8");
var reftestList = parse(text);

Tests

 npm test

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i reftest-list-parser

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • azu