mirror of
https://github.com/axios/axios.git
synced 2026-04-12 14:41:55 +08:00
* chore: small fixes to tests * feat: transitional move to vitests * feat: moving unit tests in progress * feat: moving more unit tests over * feat: more tests moved * feat: updated more sections of the http test * chore: wip http tests * chore: wip http tests * chore: more http tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: remove un-needed docs * chore: update package lock * chore: update lock
14 lines
426 B
JavaScript
14 lines
426 B
JavaScript
import { describe, it } from 'vitest';
|
|
import assert from 'assert';
|
|
import fromDataURI from '../../lib/helpers/fromDataURI.js';
|
|
|
|
describe('helpers::fromDataURI', () => {
|
|
it('should return buffer from data uri', () => {
|
|
const buffer = Buffer.from('123');
|
|
|
|
const dataURI = 'data:application/octet-stream;base64,' + buffer.toString('base64');
|
|
|
|
assert.deepStrictEqual(fromDataURI(dataURI, false), buffer);
|
|
});
|
|
});
|