mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-17 15:09:51 +00:00
✨ Initial commit
This commit is contained in:
6
test/.eslintrc.js
Normal file
6
test/.eslintrc.js
Normal file
@@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
plugins: ['ghost'],
|
||||
extends: [
|
||||
'plugin:ghost/test'
|
||||
]
|
||||
};
|
||||
8
test/hello.test.js
Normal file
8
test/hello.test.js
Normal file
@@ -0,0 +1,8 @@
|
||||
const assert = require('assert/strict');
|
||||
|
||||
describe('Hello world', function () {
|
||||
it('Runs a test', function () {
|
||||
// TODO: Write me!
|
||||
assert.ok(require('../index'));
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user