UNPKG

weather-bar-app

Version:

Weather Bar is a Weather Application that lives in your Menu Bar giving you beautiful access to real-time weather conditions and a generous 15-day forecast.

19 lines (14 loc) 452 B
'use strict' // Set BABEL_ENV to use proper env config process.env.BABEL_ENV = 'test' // Enable use of ES6+ on required files require('babel-register')({ ignore: /node_modules/ }) // Attach Chai APIs to global scope const { expect, should, assert } = require('chai') global.expect = expect global.should = should global.assert = assert // Require all JS files in `./specs` for Mocha to consume require('require-dir')('./specs')