mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 13:52:10 +03:00
12d0c3bf64
This package will be used to contain the logic for determining when a revisions should be generated for a post. It will be used by the Post model during saving and will not handle the storage of revisions
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
const assert = require('assert');
|
|
|
|
describe('Hello world', function () {
|
|
it('Runs a test', function () {
|
|
// TODO: Write me!
|
|
assert.ok(require('../index'));
|
|
});
|
|
});
|