chore(lint): migrate Jest lint rules from eslint to oxlint (#37787)

Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
Đỗ Trọng Hải
2026-02-08 16:44:42 +07:00
committed by GitHub
parent c4d2d42b3b
commit 563d9f1a3f
264 changed files with 1893 additions and 1952 deletions

View File

@@ -66,7 +66,7 @@ describe('BigNumberTotal transformProps', () => {
const baseRawFormData = { dummy: 'raw' };
it('should return null bigNumber when no data is provided', () => {
test('should return null bigNumber when no data is provided', () => {
const chartProps = {
width: 400,
height: 300,
@@ -91,7 +91,7 @@ describe('BigNumberTotal transformProps', () => {
// colorThresholdFormatters fallback to empty array when getColorFormatters returns falsy
expect(result.colorThresholdFormatters).toEqual([]);
});
it('should convert subheader to subtitle', () => {
test('should convert subheader to subtitle', () => {
const chartProps = {
width: 400,
height: 300,
@@ -120,7 +120,7 @@ describe('BigNumberTotal transformProps', () => {
},
};
it('uses subtitle font size when subtitle is provided', () => {
test('uses subtitle font size when subtitle is provided', () => {
const result = transformProps({
...baseChartProps,
formData: {
@@ -139,7 +139,7 @@ describe('BigNumberTotal transformProps', () => {
expect(result.subtitleFontSize).toBe(0.4);
});
it('should compute bigNumber using parseMetricValue when data exists', () => {
test('should compute bigNumber using parseMetricValue when data exists', () => {
const chartProps = {
width: 500,
height: 400,
@@ -160,7 +160,7 @@ describe('BigNumberTotal transformProps', () => {
expect(result.bigNumber).toEqual(456);
});
it('should use formatTime as headerFormatter for Temporal or String types or forced formatting', () => {
test('should use formatTime as headerFormatter for Temporal or String types or forced formatting', () => {
// Case 1: Temporal type
const chartPropsTemporal = {
width: 600,
@@ -214,7 +214,7 @@ describe('BigNumberTotal transformProps', () => {
expect(resultForced.headerFormatter(5)).toBe('5pm');
});
it('should use numberFormatter as headerFormatter when not Temporal/String and no forced formatting', () => {
test('should use numberFormatter as headerFormatter when not Temporal/String and no forced formatting', () => {
const chartProps = {
width: 700,
height: 500,
@@ -231,7 +231,7 @@ describe('BigNumberTotal transformProps', () => {
expect(result.headerFormatter(500)).toBe('$500');
});
it('should propagate colorThresholdFormatters from getColorFormatters', () => {
test('should propagate colorThresholdFormatters from getColorFormatters', () => {
// Override the getColorFormatters mock to return specific value
const mockFormatters = [{ formatter: 'red' }];
(getColorFormatters as jest.Mock).mockReturnValueOnce(mockFormatters);