Skip to content

Commit

Permalink
Removed fit for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
javagl committed Apr 20, 2024
1 parent 200ac7d commit 26f324d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specs/tools/migration/TileFormatsMigrationSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ describe("TileFormatsMigration", function () {
//==========================================================================
// CMPT

fit("converts Composite to the expected output", async function () {
it("converts Composite to the expected output", async function () {
const subDir = "Composite/";
const name = "Composite";
const fileNameWithoutExtension = "composite";
Expand All @@ -849,7 +849,7 @@ describe("TileFormatsMigration", function () {
expect(jsonStrings.outputJsonString).toEqual(jsonStrings.goldenJsonString);
});

fit("converts CompositeOfComposite to the expected output", async function () {
it("converts CompositeOfComposite to the expected output", async function () {
const subDir = "Composite/";
const name = "CompositeOfComposite";
const fileNameWithoutExtension = "compositeOfComposite";
Expand All @@ -861,7 +861,7 @@ describe("TileFormatsMigration", function () {
expect(jsonStrings.outputJsonString).toEqual(jsonStrings.goldenJsonString);
});

fit("converts CompositeOfInstanced to the expected output", async function () {
it("converts CompositeOfInstanced to the expected output", async function () {
const subDir = "Composite/";
const name = "CompositeOfInstanced";
const fileNameWithoutExtension = "compositeOfInstanced";
Expand Down

0 comments on commit 26f324d

Please sign in to comment.