Files
pjax/tests/scripts/lib/is-supported.js

9 lines
249 B
JavaScript
Raw Normal View History

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()
})