mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
git-subtree-dir: packages/pjax git-subtree-split: 8abb21e1e9d899217b03c489c9b2d9ecd92074b5
8 lines
234 B
JavaScript
8 lines
234 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()
|
|
})
|