mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
29b3da26c3
refs https://github.com/TryGhost/Toolbox/issues/524 - This is groundwork to contain logic related to external media scraping/inlining for posts.
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());
|
|
});
|
|
});
|