]> gerrit.simantics Code Review - simantics/district.git/blob - zz-cleanup.js
9425031001cb08e95ed0e43dcd6fdf6c847b31e5
[simantics/district.git] / zz-cleanup.js
1 var test = require('tap').test
2 var path = require('path')
3 var fixtures = path.resolve(__dirname, 'fixtures')
4 var rimraf = require('rimraf')
5
6 test('cleanup', function(t) {
7   rimraf(fixtures, function(er) {
8     if (er)
9       throw er
10     t.pass('cleaned up')
11     t.end()
12   })
13 })