2019-03-03 01:37:45 -05:00
|
|
|
var tape = require("tape");
|
2014-05-05 08:36:12 +02:00
|
|
|
|
2019-03-03 01:37:45 -05:00
|
|
|
var isSupported = require("../../lib/is-supported.js");
|
2014-05-05 08:36:12 +02:00
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
});
|