Skip to content

Commit

Permalink
forgot one file
Browse files Browse the repository at this point in the history
  • Loading branch information
toloudis committed Jan 6, 2025
1 parent d7c68e9 commit fc08bb1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/VolumeRenderSettings.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Axis, VolumeRenderSettings } from "../VolumeRenderSettings";
import { Vector3 } from "three";

describe("VolumeRenderSettingUtils", () => {
test("deeply-copies bounds", () => {
it("deeply-copies bounds", () => {
const s1 = new VolumeRenderSettings();
const s1BMax = new Vector3(9.0, 9.0, 9.0);
s1.bounds.bmax = s1BMax;
Expand All @@ -20,7 +20,7 @@ describe("VolumeRenderSettingUtils", () => {
expect(s1.bounds.bmax.equals(s2BMax)).to.be.false;
});

test("deeply-copies arrays", () => {
it("deeply-copies arrays", () => {
const s1 = new VolumeRenderSettings();
const glossiness = [4.0, 3.0, 1.0];
s1.glossiness = glossiness;
Expand All @@ -37,12 +37,12 @@ describe("VolumeRenderSettingUtils", () => {
expect(s1.glossiness).to.not.deep.equal(s2.glossiness);
});

test("can compare against itself", () => {
it("can compare against itself", () => {
const s1 = new VolumeRenderSettings();
expect(s1.isEqual(s1)).to.be.true;
});

test("can compare settings objects", () => {
it("can compare settings objects", () => {
const s1 = new VolumeRenderSettings();
const s2 = new VolumeRenderSettings();

Expand Down Expand Up @@ -70,7 +70,7 @@ describe("VolumeRenderSettingUtils", () => {
expect(s1.isEqual(s4)).to.be.true;
});

test("flags string changes", () => {
it("flags string changes", () => {
const s1 = new VolumeRenderSettings();
const s2 = new VolumeRenderSettings();

Expand Down

0 comments on commit fc08bb1

Please sign in to comment.