You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
425 B
JavaScript

import { PassState } from "../../Source/Cesium.js";
describe("Renderer/PassState", function () {
it("creates a pass state", function () {
var context = {};
var passState = new PassState(context);
expect(passState.context).toBe(context);
expect(passState.framebuffer).not.toBeDefined();
expect(passState.blendingEnabled).not.toBeDefined();
expect(passState.scissorTest).not.toBeDefined();
});
});