From 0b64242f850f16eef850180e7583c3b13a44e2eb Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 10 Apr 2018 18:05:10 -0700 Subject: [PATCH] test: add missing `rm` function to `test.js` (#2349) This was missing while we were splitting the tests. Fixes #2236. --- test/test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.js b/test/test.js index b6fd6208..21407717 100644 --- a/test/test.js +++ b/test/test.js @@ -14,6 +14,7 @@ * limitations under the License. */ const fs = require('fs'); +const rm = require('rimraf').sync; const path = require('path'); const SimpleServer = require('./server/SimpleServer'); const GoldenUtils = require('./golden-utils');