cybernaut
Version:
Reliable, zero configuration end-to-end testing in BDD-style.
11 lines • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const ava_1 = require("ava");
const schema = require('../../config-schema.json');
ava_1.default('`$schema` should be "http://json-schema.org/draft-04/schema#"', t => {
t.is(schema.$schema, 'http://json-schema.org/draft-04/schema#');
});
ava_1.default('`required` should be undefined', t => {
t.is(schema.required, undefined);
});
//# sourceMappingURL=config-schema.test.js.map