test: add missing rm function to test.js (#2349)

This was missing while we were splitting the tests.

Fixes #2236.
This commit is contained in:
Andrey Lushnikov 2018-04-10 18:05:10 -07:00 committed by GitHub
parent a7d59b587e
commit 0b64242f85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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');