Mocking out runtime hooks

If you need to mock out runtimes you can do it like this, lets say you are using our hook useAssetRuntime() in your IrisX App extension.
Then you can mock it out like this:

import { screen } from '@testing-library/react';
import { trackunitProviders } from '@trackunit/react-core-contexts-test';
import { App } from './app';

describe('App', () => {
  beforeEach(() => {
    jest.restoreAllMocks(); // this ensures that we are not using any mocks from other tests
  });

  it('Should render', async () => {
    const getAssetInfo = jest.spyOn(AssetRuntime, "getAssetInfo").mockResolvedValue({ assetId: "assetId" });

    await trackunitProviders().render(<App />);

    expect(getAssetInfo).toHaveBeenCalled();
  });
});