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.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3369 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3368 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3366 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.34.0.pre.alpha.PLAY14143358 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.34.0.pre.alpha.PLAY14143357 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.34.0 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.1.pre.alpha.play1407statvaluekitinconsistencies3352 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.1.pre.alpha.PLAY14143340 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.1.pre.alpha.PLAY14143336 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.1.pre.alpha.PLAY14063320 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.1 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.0.pre.alpha.PLAY14143318 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.0.pre.alpha.PLAY14143312 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.0.pre.alpha.PBNTR405dropdownformfixesrails3311 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.0.pre.alpha.PLAY1454formpillicons3309 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.0.pre.alpha.PLAY14143306 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.0.pre.alpha.PLAY14143305 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.33.0 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.32.0.pre.alpha.PBNTR405dropdownformfixesrails3301 app/pb_kits/playbook/pb_gauge/gauge.test.js
playbook_ui-13.32.0.pre.alpha.PLAY14143297 app/pb_kits/playbook/pb_gauge/gauge.test.js