mirror of
https://github.com/Kong/insomnia.git
synced 2026-02-15 00:24:05 -05:00
* 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
11 lines
211 B
TypeScript
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,
|
|
},
|
|
},
|
|
});
|