mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +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:
@@ -20,7 +20,7 @@
|
||||
import roundDecimal from '../../src/utils/roundDecimal';
|
||||
|
||||
describe('roundDecimal', () => {
|
||||
it('rounding method to limit the number of decimal digits', () => {
|
||||
test('rounding method to limit the number of decimal digits', () => {
|
||||
expect(roundDecimal(1.139, 2)).toBe(1.14);
|
||||
expect(roundDecimal(1.13929, 3)).toBe(1.139);
|
||||
expect(roundDecimal(1.13929)).toBe(1);
|
||||
|
||||
Reference in New Issue
Block a user