mirror of
https://github.com/apache/superset.git
synced 2026-04-18 23:55:00 +00:00
chore(lint): migrate Jest lint rules from eslint to oxlint (#37787)
Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
@@ -64,7 +64,7 @@ describe('test treeBuilder', () => {
|
||||
count2: 3,
|
||||
},
|
||||
];
|
||||
it('should build tree as expected', () => {
|
||||
test('should build tree as expected', () => {
|
||||
const tree = treeBuilder(data, ['foo', 'bar'], 'count');
|
||||
expect(tree).toEqual([
|
||||
{
|
||||
@@ -168,7 +168,7 @@ describe('test treeBuilder', () => {
|
||||
]);
|
||||
});
|
||||
|
||||
it('should build tree with secondaryValue as expected', () => {
|
||||
test('should build tree with secondaryValue as expected', () => {
|
||||
const tree = treeBuilder(data, ['foo', 'bar'], 'count', 'count2');
|
||||
expect(tree).toEqual([
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user