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

@@ -28,7 +28,7 @@ describe('Graph buildQuery', () => {
viz_type: 'my_chart',
};
it('should build groupby with source and target categories', () => {
test('should build groupby with source and target categories', () => {
const formDataWithCategories = {
...formData,
source: 'dummy_source',
@@ -47,7 +47,7 @@ describe('Graph buildQuery', () => {
expect(query.metrics).toEqual(['foo', 'bar']);
});
it('should build groupby with source category', () => {
test('should build groupby with source category', () => {
const formDataWithCategories = {
...formData,
source: 'dummy_source',
@@ -64,7 +64,7 @@ describe('Graph buildQuery', () => {
expect(query.metrics).toEqual(['foo', 'bar']);
});
it('should build groupby with target category', () => {
test('should build groupby with target category', () => {
const formDataWithCategories = {
...formData,
source: 'dummy_source',
@@ -81,7 +81,7 @@ describe('Graph buildQuery', () => {
expect(query.metrics).toEqual(['foo', 'bar']);
});
it('should build groupby without any category', () => {
test('should build groupby without any category', () => {
const formDataWithCategories = {
...formData,
source: 'dummy_source',