File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed
Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 11import { test } from '@playwright/test'
22
3- test ( 'downloads a file' , async ( ) => {
4- // Check that the file is downloaded successfully and exists on the filesystem
5- } )
3+ test . describe ( 'downloadURL' , ( ) => {
4+ test ( 'downloads a file' , async ( ) => {
5+ // Check that the file is downloaded successfully and exists on the filesystem
6+ } )
67
7- test ( 'trigers multiple downloads' , async ( ) => {
8- // Test downloadURL for multiple consecutive downloads without issues
8+ test ( 'trigers multiple downloads' , async ( ) => {
9+ // Test downloadURL for multiple consecutive downloads without issues
10+ } )
911} )
Original file line number Diff line number Diff line change 1+ import { configDefaults , defineConfig } from 'vitest/config'
2+
3+ export default defineConfig ( {
4+ test : {
5+ exclude : [
6+ ...configDefaults . exclude ,
7+ '**/test/e2e/**' ,
8+ ] ,
9+ } ,
10+ } )
You can’t perform that action at this time.
0 commit comments