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

9 lines
234 B
JavaScript
Raw Normal View History

var tape = require("tape")
2014-10-14 08:23:56 +02:00
var isSupported = require("../../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()
})