]> gerrit.simantics Code Review - simantics/district.git/blob - test/00-setup.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / test / 00-setup.js
1 var join = require('path').join
2 var rimraf = require('rimraf')
3 var tap = require('tap')
4
5 tap.test('setup', 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 })