mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
- add support for remote uploads - add support for restore using golden-retriever - update examples - #6181 still persists --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Mikael Finstad <finstaden@gmail.com>
28 lines
593 B
TypeScript
28 lines
593 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 120_000,
|
|
globalSetup: ['tests/s3-client/setup.ts'],
|
|
projects: [
|
|
{
|
|
test: {
|
|
name: 's3-jsdom',
|
|
include: ['**/*.test.ts'],
|
|
environment: 'jsdom',
|
|
},
|
|
},
|
|
{
|
|
test: {
|
|
name: 's3-browser',
|
|
include: ['**/minio.test.ts'],
|
|
browser: {
|
|
enabled: true,
|
|
provider: 'playwright',
|
|
instances: [{ browser: 'chromium' }],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
})
|