mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03: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'));
|
|
});
|
|
});
|