mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
import { Tinytest } from "meteor/tinytest";
|
|
|
|
Tinytest.add("url - sanity", function (test) {
|
|
test.equal(typeof URL, "function");
|
|
test.equal(typeof URLSearchParams, "function");
|
|
});
|
|
|
|
// backwards compatibility
|
|
require('../bc/url_tests');
|