refactor: optimize imports

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-26 09:02:05 +01:00
parent 3f00335ade
commit 13f5d258dc
20 changed files with 24 additions and 52 deletions

View File

@@ -1,5 +1,5 @@
// Import necessary modules and functions
import { describe, it, expect } from 'vitest';
import { describe, expect, it } from 'vitest';
import { listOfIntegers } from './service';
// Define test cases for the listOfIntegers function

View File

@@ -1,4 +1,4 @@
import { describe, it, expect } from 'vitest';
import { describe, expect, it } from 'vitest';
import { compute } from './service';
describe('compute function', () => {