mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
refactor: optimize imports
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { expect, describe, it } from 'vitest';
|
||||
import { createPalindromeList, createPalindrome } from './service';
|
||||
import { describe, expect } from 'vitest';
|
||||
import { createPalindrome, createPalindromeList } from './service';
|
||||
|
||||
describe('createPalindrome', () => {
|
||||
test('should create palindrome by reversing the entire string', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { expect, describe, it } from 'vitest';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { extractSubstring } from './service';
|
||||
|
||||
describe('extractSubstring', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { expect, describe, it } from 'vitest';
|
||||
import { describe, expect } from 'vitest';
|
||||
import { palindromeList } from './service';
|
||||
|
||||
describe('palindromeList', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { expect, describe, it } from 'vitest';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { randomizeCase } from './service';
|
||||
|
||||
describe('randomizeCase', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { expect, describe, it } from 'vitest';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { stringReverser } from './service';
|
||||
|
||||
describe('stringReverser', () => {
|
||||
|
||||
@@ -2,7 +2,6 @@ import { Box } from '@mui/material';
|
||||
import React, { useState } from 'react';
|
||||
import ToolTextInput from '../../../components/input/ToolTextInput';
|
||||
import ToolTextResult from '../../../components/result/ToolTextResult';
|
||||
import * as Yup from 'yup';
|
||||
import ToolOptions from '../../../components/options/ToolOptions';
|
||||
import { compute, SplitOperatorType } from './service';
|
||||
import RadioWithTextField from '../../../components/options/RadioWithTextField';
|
||||
|
||||
@@ -2,7 +2,6 @@ import { Box } from '@mui/material';
|
||||
import React, { useState } from 'react';
|
||||
import ToolTextInput from '../../../components/input/ToolTextInput';
|
||||
import ToolTextResult from '../../../components/result/ToolTextResult';
|
||||
import * as Yup from 'yup';
|
||||
import ToolOptions from '../../../components/options/ToolOptions';
|
||||
import { compute } from './service';
|
||||
import TextFieldWithDesc from '../../../components/options/TextFieldWithDesc';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { expect, describe, it } from 'vitest';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { UppercaseInput } from './service';
|
||||
|
||||
describe('UppercaseInput', () => {
|
||||
|
||||
Reference in New Issue
Block a user