thelounge/test/fixtures/env.js
2016-12-28 03:31:33 -05:00

12 lines
239 B
JavaScript

"use strict";
global.log = {
error: () => console.error.apply(console, arguments),
warn: () => {},
info: () => {},
debug: () => {},
};
var home = require("path").join(__dirname, ".lounge");
require("../../src/helper").setHome(home);