Files
meanTorrent/test.js
Marek Grzybek d14d5130af feat(config): Deprecate JSHint in favor of ESLint
Add basic ESLint setup extending well-known Airbnb code style.

Fixes #1072, #1097
2016-03-15 19:11:12 +01:00

13 lines
203 B
JavaScript

'use strict';
/**
* Module dependencies.
*/
var path = require('path');
var app = require(path.resolve('./config/lib/app'));
app.init(function () {
console.log('Initialized test automation');
});