mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
7 lines
225 B
JavaScript
7 lines
225 B
JavaScript
|
const assert = require('assert');
|
||
|
describe('exports', function () {
|
||
|
it('exports the lib/email-suppression-list file', function () {
|
||
|
assert(require('../') === require('../lib/email-suppression-list'));
|
||
|
});
|
||
|
});
|