UNPKG

testdouble

Version:

A minimal test double library for TDD with JavaScript

10 lines (9 loc) 213 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Call { constructor(context, args) { this.context = context; this.args = args; } } exports.default = Call;