thywill
Version:
A Node.js clustered framework for single page web applications based on asynchronous messaging.
27 lines (21 loc) • 767 B
JavaScript
/**
* @fileOverview
* Vows tests for starting up and shutting down a Thywill process with no
* applications.
*
* These are base tests without Express, Redis, or other frills.
*/
var clone = require('clone');
var tools = require('../lib/tools');
var baseConfig = require('../config/baseTestThywillConfig');
var config = clone(baseConfig);
// Obtain a test suit that launches Thywill.
var suite = tools.headless.singleInstanceVowsSuite('Base: Startup Thywill', {
config: baseConfig,
useRedisSocketStore: false,
useRedisSessionStore: false
});
//-----------------------------------------------------------
// Exports - Vows test suite
//-----------------------------------------------------------
module.exports.suite = suite;