Ghost/ghost/dynamic-routing-events/test/dynamic-routing-events.test.js

9 lines
226 B
JavaScript
Raw Normal View History

const assert = require('assert/strict');
const events = require('../index');
describe('Dynamic Routing Events', function () {
it('exports events', function () {
assert(events.URLResourceUpdatedEvent);
});
});