Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/defaults/test.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (28 sloc)
1.03 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var defaults = require('./'), | |
test = require('tap').test; | |
test("ensure options is an object", function(t) { | |
var options = defaults(false, { a : true }); | |
t.ok(options.a); | |
t.end() | |
}); | |
test("ensure defaults override keys", function(t) { | |
var result = defaults({}, { a: false, b: true }); | |
t.ok(result.b, 'b merges over undefined'); | |
t.equal(result.a, false, 'a merges over undefined'); | |
t.end(); | |
}); | |
test("ensure defined keys are not overwritten", function(t) { | |
var result = defaults({ b: false }, { a: false, b: true }); | |
t.equal(result.b, false, 'b not merged'); | |
t.equal(result.a, false, 'a merges over undefined'); | |
t.end(); | |
}); | |
test("ensure defaults clone nested objects", function(t) { | |
var d = { a: [1,2,3], b: { hello : 'world' } }; | |
var result = defaults({}, d); | |
t.equal(result.a.length, 3, 'objects should be clones'); | |
t.ok(result.a !== d.a, 'objects should be clones'); | |
t.equal(Object.keys(result.b).length, 1, 'objects should be clones'); | |
t.ok(result.b !== d.b, 'objects should be clones'); | |
t.end(); | |
}); |