mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 10:54:13 +00:00
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
var cc = require('..')
|
|
var assert = require('assert')
|
|
|
|
assert.deepEqual({
|
|
hello: true
|
|
}, cc.env('test_', {
|
|
'test_hello': true,
|
|
'ignore_this': 4,
|
|
'ignore_test_this_too': []
|
|
}))
|