qlik-oss/sn-table

View on GitHub
jest/setup.ts

Summary

Maintainability
A
0 mins
Test Coverage
import "@testing-library/jest-dom";

beforeEach(() => {
  const context = {
    measureText(text: string | undefined) {
      return {
        width: text?.length ?? 0,
      };
    },
  } as CanvasRenderingContext2D;
  jest.spyOn(HTMLCanvasElement.prototype, "getContext").mockReturnValue(context);
});