10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
|
|
var tape = require("tape")
|
||
|
|
|
||
|
|
var switchesSelectors = require("../../../src/scripts/lib/switches-selectors.js")
|
||
|
|
|
||
|
|
tape("test switchesSelectors", function(t) {
|
||
|
|
t.fail()
|
||
|
|
|
||
|
|
t.end()
|
||
|
|
})
|