]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/npm-registry-client/test/zz-cleanup.js
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / npm-registry-client / test / zz-cleanup.js
1 var join = require('path').join
2 var rimraf = require('rimraf')
3 var tap = require('tap')
4
5 tap.test('teardown', function (t) {
6   rimraf(join(__dirname, 'fixtures', 'cache'), function (er) {
7     if (er) throw er
8     t.pass('cache cleaned')
9     t.end()
10   })
11 })