mirror of
https://github.com/axios/axios.git
synced 2026-04-11 02:11:50 +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
11 lines
334 B
JavaScript
11 lines
334 B
JavaScript
import { expect, test } from 'vitest';
|
|
|
|
test('runs in browser environment', () => {
|
|
document.body.innerHTML = '<div data-testid="smoke">vitest browser smoke</div>';
|
|
|
|
const el = document.querySelector('[data-testid="smoke"]');
|
|
|
|
expect(el?.textContent).toBe('vitest browser smoke');
|
|
expect(globalThis.window).toBeDefined();
|
|
});
|