mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 19:03:46 +02:00
Do not make UrlSource fail if the size of the file is smaller than 512kb (+ add a Vitest browser mode test)
11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
browser: {
|
|
provider: 'webdriverio',
|
|
instances: [{ browser: 'chrome' }],
|
|
},
|
|
},
|
|
});
|