Files
pjax/tests/scripts/lib/is-supported.js
Maxime Thirouin d5395c3d07 Test isSupported
kind of stupid, but I don't want to maintain a list of browser UA or
whatever.
2014-10-14 08:04:22 +02:00

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