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

12 lines
251 B
JavaScript
Raw Normal View History

2019-03-03 01:37:45 -05:00
var tape = require("tape");
2019-03-03 01:37:45 -05:00
var isSupported = require("../../lib/is-supported.js");
tape("test isSupported method", function(t) {
2019-03-03 01:37:45 -05:00
t.true(
isSupported(),
"well, we run test on supported browser, so it should be ok here"
);
t.end();
});