Files
insomnia/packages/insomnia-scripting-environment/vitest.config.ts
Jack Kavanagh b898fefb1c prune db methods, and improve type-checking (#8993)
* remove unused hooks

* remove _empty

* remove unused all

* fix test

* align get and get where

* getOrCreate

* create string union of model types

* fix bad test

* remove getMostRecent

* simplify renderer change listeners

* remove batch modify usage

* use async api

* use localhost for ci

* remove false db typings

* allow undefined as a bridge response

* improve typing

* eliminate find most recent

* fix vitest path aliases

* types

* simplify insert

* eliminate upsert

* fix tests

* remove partial type

* fix tests

* remove redundancy, init types

* fix types

* delete comments

* remove optional types

* fix coercion

* fix types

* add export types and remove modeltypes
2025-08-28 13:49:24 +02:00

11 lines
211 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
hideSkippedTests: true,
alias: {
'~/': new URL('../insomnia/src/', import.meta.url).pathname,
},
},
});