Sha256: 6fc8c4490e64423b9b4134a234f2bdc5e8eea10605ec485b91d26c26cef6a3e9

Contents?: true

Size: 748 Bytes

Versions: 516

Compression:

Stored size: 748 Bytes

Contents

import React from 'react';
import { render, screen } from '../utilities/test-utils';
import Gauge from './_gauge';

beforeEach(() => {
  // Silences error logs within the test suite.
  jest.spyOn(console, 'error');
  jest.spyOn(console, 'warn');
  console.error.mockImplementation(() => {});
  console.warn.mockImplementation(() => {});
});

afterEach(() => {
  console.error.mockRestore();
  console.warn.mockRestore();
});

const testId = 'gauge1';

test('uses exact classname', () => {
  const data = [
    { name: 'Name', value: 45 },
  ]
  render(
    <Gauge
        chartData={data}
        data={{ testid: testId }}
        id='gaugeid'
    />
  );
 
  const kit = screen.getByTestId(testId);
  expect(kit).toHaveClass('pb_gauge_kit');
});

Version data entries

516 entries across 516 versions & 1 rubygems

Version Path
playbook_ui-13.31.0.pre.alpha.play1262iconstyles3172 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.31.0.pre.alpha.play1262iconstyles3171 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.31.0 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.30.0.pre.alpha.play1367contenttagnoninputkits3159 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.30.0.pre.alpha.20240515remotebuildkitconversion3150 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.30.0.pre.alpha.PBNTR353draggablev53136 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.30.0.pre.alpha.PLAY1328fixtimelinekitglobalpropsreact3096 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.30.0 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.29.0.pre.alpha.removeduplicatekitexampleclass3063 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.29.0.pre.alpha.PBNTR329draggablev33060 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.29.0.pre.alpha.PBNTR329draggablev33059 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.29.0.pre.alpha.testingcollapsibleissue3052 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.29.0 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.28.0.pre.alpha.PBNTR297gradientoverlay3029 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.28.0.pre.alpha.pbntr312tableheaderflexremoval3019 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.28.0.pre.alpha.dialogturbostreameventlistener3017 app/pb_kits/playbook/pb_gauge/gauge.test.js