Files
pjax/tests/lib/is-supported.js
Behind The Math c13149626b Prettier fixes
2019-03-03 01:37:45 -05:00

12 lines
251 B
JavaScript

var tape = require("tape");
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();
});