lzy1960/google-translate

View on GitHub

Showing 6 of 6 total issues

Function getTranslateData has 48 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const getTranslateData = async (
text: string,
options: Options = DEFAULT_OPTIONS,
): Promise<string | never> => {
const _options = extend({}, DEFAULT_OPTIONS, options)
Severity: Minor
Found in packages/src/translate.ts - About 1 hr to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    it('should get translate data with long sentences', async () => {
    const res = await getTranslateData(
    '床前明月光,疑是地上霜。举头望明月,低头思故乡。',
    )
    const data = formatBodyToRawResult(res)
    Severity: Minor
    Found in packages/__tests__/formatBodyToRawResult.spec.ts and 1 other location - About 50 mins to fix
    packages/__tests__/formatBodyToRawResult.spec.ts on lines 15..19

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    it('should fetch google api and pick up translate used array', async () => {
    const res = await getTranslateData('你好')
    const result = formatBodyToRawResult(res)
    expect(result).toMatchSnapshot()
    })
    Severity: Minor
    Found in packages/__tests__/formatBodyToRawResult.spec.ts and 1 other location - About 50 mins to fix
    packages/__tests__/formatBodyToRawResult.spec.ts on lines 38..44

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    it('should translate with punctuation', async () => {
    const res = await translate('今天,我看到一个程序员!')
    expect(res.text).toBe('Today, I saw a programmer!')
    })
    Severity: Minor
    Found in packages/__tests__/translate.spec.ts and 2 other locations - About 30 mins to fix
    packages/__tests__/translate.spec.ts on lines 26..29
    packages/__tests__/translate.spec.ts on lines 41..44

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    it('should translate without char', async () => {
    const res = await translate('')
    expect(res.text).toBe('')
    })
    Severity: Minor
    Found in packages/__tests__/translate.spec.ts and 2 other locations - About 30 mins to fix
    packages/__tests__/translate.spec.ts on lines 22..25
    packages/__tests__/translate.spec.ts on lines 41..44

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    it('should translate with confusing punctuation', async () => {
    const res = await translate('这,...是,..什.么????12123123')
    expect(res.text).toBe('What\'s this???? 12123123')
    })
    Severity: Minor
    Found in packages/__tests__/translate.spec.ts and 2 other locations - About 30 mins to fix
    packages/__tests__/translate.spec.ts on lines 22..25
    packages/__tests__/translate.spec.ts on lines 26..29
    Severity
    Category
    Status
    Source
    Language