mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
|
const assert = require('assert');
|
||
|
const ExternalMediaInliner = require('../index');
|
||
|
|
||
|
describe('ExternalMediaInliner', function () {
|
||
|
it('Creates an instance', function () {
|
||
|
assert.ok(new ExternalMediaInliner());
|
||
|
});
|
||
|
});
|