5674036902
refs https://github.com/TryGhost/Team/issues/1083 This is the initial scaffolding for setting up Offers in Ghost
11 lines
334 B
JavaScript
11 lines
334 B
JavaScript
// This file is required before any test is run
|
|
|
|
// Taken from the should wiki, this is how to make should global
|
|
// Should is a global in our eslint test config
|
|
global.should = require('should').noConflict();
|
|
should.extend();
|
|
|
|
// Sinon is a simple case
|
|
// Sinon is a global in our eslint test config
|
|
global.sinon = require('sinon');
|