]> gerrit.simantics Code Review - simantics/district.git/blob - test/zz-cleanup.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / test / 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 })