Comparing version 10.1.4 to 10.2.0
@@ -5,3 +5,3 @@ { | ||
}, | ||
"version": "10.1.4", | ||
"version": "10.2.0", | ||
"bundleDependencies": false, | ||
@@ -12,3 +12,3 @@ "dependencies": { | ||
"diffler": "^2.0.4", | ||
"mocha": "^10.1.0" | ||
"mocha": "^10.2.0" | ||
}, | ||
@@ -15,0 +15,0 @@ "scripts": { |
@@ -6,3 +6,3 @@ var assert = require('assert'); | ||
describe('require', function () { | ||
it('colors', function () { | ||
it('colors app', function () { | ||
try { | ||
@@ -17,3 +17,73 @@ colors = require('colors') | ||
}) | ||
it('all appender', function () { | ||
try { | ||
all = require('../lib/appenders/all') | ||
if (typeof all == 'undefined') { | ||
throw new Error('no all appender') | ||
} | ||
} catch (e) { | ||
assert(false) | ||
} | ||
}) | ||
it('func_all appender', function () { | ||
try { | ||
func_all = require('../lib/appenders/func_all') | ||
if (typeof func_all == 'undefined') { | ||
throw new Error('no func_all') | ||
} | ||
} catch (e) { | ||
assert(false) | ||
} | ||
}) | ||
it('top_one appender', function () { | ||
try { | ||
top_one = require('../lib/appenders/top_one') | ||
if (typeof top_one == 'undefined') { | ||
throw new Error('no top_one') | ||
} | ||
} catch (e) { | ||
assert(false) | ||
} | ||
}) | ||
it('bottom_one appender', function () { | ||
try { | ||
bottom_one = require('../lib/appenders/bottom_one') | ||
if (typeof bottom_one == 'undefined') { | ||
throw new Error('no bottom_one') | ||
} | ||
} catch (e) { | ||
assert(false) | ||
} | ||
}) | ||
it('sync_all appender', function () { | ||
try { | ||
sync_all = require('../lib/appenders/sync_all') | ||
if (typeof sync_all == 'undefined') { | ||
throw new Error('no sync_all') | ||
} | ||
} catch (e) { | ||
assert(false) | ||
} | ||
}) | ||
it('status appender', function () { | ||
try { | ||
statuss = require('../lib/appenders/status') | ||
if (typeof statuss == 'undefined') { | ||
throw new Error('no status') | ||
} | ||
} catch (e) { | ||
assert(false) | ||
} | ||
}) | ||
it('version appender', function () { | ||
try { | ||
version = require('../lib/appenders/version') | ||
if (typeof version == 'undefined') { | ||
throw new Error('no version') | ||
} | ||
} catch (e) { | ||
assert(false) | ||
} | ||
}) | ||
}) | ||
}) |
@@ -9,3 +9,3 @@ const assert = require('assert'), | ||
}, | ||
"version": "10.1.4", | ||
"version": "10.2.0", | ||
"bundleDependencies": false, | ||
@@ -16,3 +16,3 @@ "dependencies": { | ||
"diffler": "^2.0.4", | ||
"mocha": "^10.1.0" | ||
"mocha": "^10.2.0" | ||
}, | ||
@@ -19,0 +19,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35765
982
Updatedmocha@^10.2.0