9 lines
249 B
JavaScript
9 lines
249 B
JavaScript
|
|
var tape = require("tape")
|
||
|
|
|
||
|
|
var isSupported = require("../../../src/scripts/lib/is-supported.js")
|
||
|
|
|
||
|
|
tape("test isSupported method", function(t) {
|
||
|
|
t.true(isSupported(), "well, we run test on supported browser, so it should be ok here")
|
||
|
|
t.end()
|
||
|
|
})
|