mirror of
https://github.com/directus/directus.git
synced 2026-02-10 17:24:58 -05:00
Make sure azure tests use unique file paths (#17104)
This commit is contained in:
@@ -20,6 +20,7 @@ import {
|
||||
randText,
|
||||
randFileType,
|
||||
randUrl,
|
||||
randGitShortSha as randUnique,
|
||||
} from '@ngneat/falso';
|
||||
|
||||
vi.mock('@directus/utils/node');
|
||||
@@ -62,12 +63,12 @@ beforeEach(() => {
|
||||
endpoint: `https://${randDomainName()}`,
|
||||
},
|
||||
path: {
|
||||
input: randFilePath(),
|
||||
inputFull: randFilePath(),
|
||||
src: randFilePath(),
|
||||
srcFull: randFilePath(),
|
||||
dest: randFilePath(),
|
||||
destFull: randFilePath(),
|
||||
input: randUnique() + randFilePath(),
|
||||
inputFull: randUnique() + randFilePath(),
|
||||
src: randUnique() + randFilePath(),
|
||||
srcFull: randUnique() + randFilePath(),
|
||||
dest: randUnique() + randFilePath(),
|
||||
destFull: randUnique() + randFilePath(),
|
||||
},
|
||||
range: {
|
||||
start: randNumber(),
|
||||
|
||||
Reference in New Issue
Block a user