Ghost/ghost/stats-service/test/lib/stats.test.js
Fabien "egg" O'Carroll 77819d261a Moved Stats Service from Ghost
The functionality hasn't changed this has just moved the code
and updated the tests to provide better coverage
2022-04-21 13:10:33 +01:00

11 lines
387 B
JavaScript

const StatsService = require('../../lib/stats');
const knex = require('knex').default;
const assert = require('assert');
describe('StatsService', function () {
it('Exposes a create factory', function () {
const service = StatsService.create({knex: knex({client: 'sqlite3', connection: {filename: ':memory:'}})});
assert(service instanceof StatsService);
});
});