Socket
Socket
Sign inDemoInstall

buster-configuration

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buster-configuration - npm Package Compare versions

Comparing version 0.7.3 to 0.7.4

2

lib/group.js

@@ -99,3 +99,3 @@ var Path = require("path");

var opt = {}, key, i, l;
opt.resources = _.extend(group.resources, options.resources);
opt.resources = _.extend(group.resources.slice(0), options.resources);

@@ -102,0 +102,0 @@ for (i = 0, l = LOAD_ALIASES.length; i < l; ++i) {

{
"name": "buster-configuration",
"version": "0.7.3",
"version": "0.7.4",
"description": "Groks the buster.js configuration file, including resource loading, file globbing, grouped test configs and more",

@@ -5,0 +5,0 @@ "homepage": "http://busterjs.org/buster-configuration",

@@ -12,5 +12,8 @@ # buster-configuration

**0.7.4** (05.09.2014)
* fix for issue [#420 - Resources array isn't cloned for extending configuration groups](https://github.com/busterjs/buster/issues/420)
**0.7.3** (25.03.2014)
* feature [custom test beds](http://docs.busterjs.org/en/latest/overview/#custom-test-beds) added

@@ -602,2 +602,17 @@ var buster = require("buster-node");

refute(group.options.autoRun);
},
"clones resources array": function (done) {
var original = cgroup.create({
}, __dirname + "/fixtures");
var group = original.extend({
resources: ["foo.js"]
}, __dirname + "/fixtures");
original.resolve();
group.resolve().then(done(function (resourceSet) {
assert.equals(original.resources.length, 0);
assert.equals(group.resources.length, 1);
}));
}

@@ -604,0 +619,0 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc