mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
341 B
12 lines
341 B
import CSVParser from '@/services/parsers/csv.service'
|
|
|
|
describe('Request', () => {
|
|
const parser = new CSVParser()
|
|
|
|
test('can parse text', () => {
|
|
const text = 'col 1,col 2\n1,2'
|
|
const parsed = parser.parse(text)
|
|
expect(parsed.meta.fields).toEqual(['col 1', 'col 2'])
|
|
expect(parsed.data[0]['col 1']).toEqual('1')
|
|
})
|
|
})
|