Initial commit

This commit is contained in:
Joe Grigg
2025-05-27 16:23:47 +01:00
commit 15599cd83d
11 changed files with 3810 additions and 0 deletions

6
test/.eslintrc.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: ['ghost'],
extends: [
'plugin:ghost/test'
]
};

8
test/hello.test.js Normal file
View 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'));
});
});