An open API service indexing awesome lists of open source software.

https://github.com/dwango-js/flexunit-server

Flexunit Node.js server
https://github.com/dwango-js/flexunit-server

Last synced: 3 months ago
JSON representation

Flexunit Node.js server

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/dwango-js/flexunit-server.svg)](https://travis-ci.org/dwango-js/flexunit-server)

flexunit-server
===============

FlexUnit Node.js server.

This module accepts connections from FlexUnit CIListener and generates results
with given reporter.

Usage Example
-------------

```js
var fuserver = require("flexunit-server");

var reporter = new fuserver.reporter["Junit"];
var server = fuserver.createServer(reporter);
server.listen(8080);
```