web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
352 B

  1. "use strict";
  2. var assert = require("@sinonjs/referee-sinon").assert;
  3. var globalObject = require("./global");
  4. describe("global", function() {
  5. before(function() {
  6. if (typeof global === "undefined") {
  7. this.skip();
  8. }
  9. });
  10. it("is same as global", function() {
  11. assert.same(globalObject, global);
  12. });
  13. });