Skip to content

Commit 9d92bb4

Browse files
committed
3.2.4
1 parent 97a38b2 commit 9d92bb4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/testdouble.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
2+
33
*
44
* A minimal test double library for TDD with JavaScript
55
*
@@ -9753,7 +9753,7 @@ exports.default = function (typeOrNames) {
97539753
};
97549754

97559755
var fakeConstructorFromNames = function fakeConstructorFromNames(funcNames) {
9756-
return _lodashWrap2.default.tap(td.function('(unnamed constructor)'), function (fakeConstructor) {
9756+
return _lodashWrap2.default.tap((0, _function2.default)('(unnamed constructor)'), function (fakeConstructor) {
97579757
fakeConstructor.prototype.toString = function () {
97589758
return '[test double instance of constructor]';
97599759
};
@@ -11331,7 +11331,7 @@ var ignoreMessage = function ignoreMessage(config) {
1133111331
Object.defineProperty(exports, "__esModule", {
1133211332
value: true
1133311333
});
11334-
exports.default = '3.2.3';
11334+
exports.default = '3.2.4';
1133511335

1133611336
},{}],336:[function(require,module,exports){
1133711337
'use strict';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "testdouble",
3-
"version": "3.2.3",
3+
"version": "3.2.4",
44
"description": "A minimal test double library for TDD with JavaScript",
55
"homepage": "https://github.com/testdouble/testdouble.js",
66
"author": {

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default '3.2.3'
1+
export default '3.2.4'

0 commit comments

Comments
 (0)