Skip to content

Commit

Permalink
Remove NoRenderApp
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasDov committed Feb 13, 2025
1 parent d89778e commit d21aa7b
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


import { IModelReadRpcInterface, SnapshotIModelRpcInterface } from "@itwin/core-common";
import { IModelApp, NoRenderApp } from "@itwin/core-frontend";
import { ECSchemaRpcInterface } from "@itwin/ecschema-rpcinterface-common";
import { ECSchemaRpcImpl } from "@itwin/ecschema-rpcinterface-impl";
import { PresentationRpcInterface } from "@itwin/presentation-common";
Expand Down Expand Up @@ -33,8 +32,6 @@ import type { HierarchyNodeIdentifiersPath } from "@itwin/presentation-hierarchi

describe("CategoriesVisibilityHandler", () => {
before(async () => {
await NoRenderApp.startup();
await TestUtils.initialize();
await initializePresentationTesting({
backendProps: {
caching: {
Expand All @@ -45,13 +42,13 @@ describe("CategoriesVisibilityHandler", () => {
},
rpcs: [SnapshotIModelRpcInterface, IModelReadRpcInterface, PresentationRpcInterface, ECSchemaRpcInterface],
});
await TestUtils.initialize();
// eslint-disable-next-line @itwin/no-internal
ECSchemaRpcImpl.register();
});

after(async () => {
TestUtils.terminate();
await IModelApp.shutdown();
await terminatePresentationTesting();
});

Expand Down

0 comments on commit d21aa7b

Please sign in to comment.