mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-25 10:19:30 -05:00
545556ee30
* chore(deps): upgrade listr 3.x to 9.x * use important strings to assert install output instead of fragile snapshots * rm unused `enquirer` dep; write cli test results * revert persisting junit xml for now * ensure VerboseRenderer implements LstrRenderer contract * remove unnecessary vendorized VerboseRenderer; use behavioral assertions in verify instead of brittle snapshots * make most `any` types in cli installer explicit; remove unused deps * changelog * rm trailing slash from pr link * Update cli/lib/tasks/install.ts Co-authored-by: Bill Glesias <bglesias@gmail.com> * simplify task list definitions; improve type annotations * fix version output; improve readability of task generation * rm unused types * revert error handling regression * fix implicit any * more readability improvements; better listr mocking * apply similar readability improvements to verify * fix order of verify -> welcome message * chore: skip adding the install comment on the commit (#33685) * update axios (#33687) --------- Co-authored-by: Bill Glesias <bglesias@gmail.com> Co-authored-by: Matt Schile <mschile@cypress.io>
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['test/**/*.spec.ts'],
|
|
globals: true,
|
|
environment: 'node',
|
|
reporters: ['default'],
|
|
},
|
|
})
|