vitest/test/reporters/fixtures/indicator-position.test.js

16 lines
226 B
JavaScript

/* eslint-disable no-multiple-empty-lines */
// this file should be in CRLF format
import { expect, test } from 'vitest'
test('', async () => {
expect(1 + 1).toBe(3)
expect(1 + 1).toBe(2)
expect(2 + 2).toBe(4)
})