Files
mediabunny/test/vitest.config.ts
T
Jonny BurgerandGitHub f13a2e6732 Merge pull request #86 from JonnyBurger/url-source-allow-reading-small-files
Do not make UrlSource fail if the size of the file is smaller than 512kb (+ add a Vitest browser mode test)
2025-09-03 18:13:42 +02:00

11 lines
179 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
browser: {
provider: 'webdriverio',
instances: [{ browser: 'chrome' }],
},
},
});