You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
217 B

'use strict'
const t = require('tap')
const semver = require('semver')
if (semver.gt(process.versions.node, '8.0.0')) {
require('./fluent-schema')(t)
} else {
t.pass('Skip because Node version < 8')
t.end()
}