mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
19 lines
328 B
JavaScript
19 lines
328 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
var Assert = require('assert')
|
||
|
|
var Constants = require('./')
|
||
|
|
|
||
|
|
try {
|
||
|
|
var nodeConstants = require('constants')
|
||
|
|
|
||
|
|
Assert.deepEqual(nodeConstants, Constants, 'The constants file was not equal')
|
||
|
|
}
|
||
|
|
|
||
|
|
catch (e) {
|
||
|
|
console.error(e)
|
||
|
|
console.error('\nTests failed!')
|
||
|
|
process.exit(1)
|
||
|
|
}
|
||
|
|
|
||
|
|
console.info('Tests passed!')
|