From 4bae166e36aad5a85df778fcd2693d7473a4659c Mon Sep 17 00:00:00 2001 From: Bass Date: Tue, 20 Feb 2018 10:04:57 +0200 Subject: [PATCH] Update README.md Missing comma in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05360d8..61afed5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ var tapeNock = require('tape-nock') // call tapeNock with tape and an options object var test = tapeNock(tape, { //options object to be passed to nock, not required fixtures: path.join(__dirname, 'fixtures'), // this is the default path - mode: 'dryrun' // this is the default mode + mode: 'dryrun', // this is the default mode defaultTestOptions: { // optionally provide default options to nockBack for each test before: function () { console.log('a preprocessing function, gets called before nock.define')