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