feat(server): default exclusion patterns (#12566)

* Add default exclusion patterns

* simplify

* fix tests
This commit is contained in:
Jonathan Jogenfors 2024-09-11 16:40:52 +02:00 committed by GitHub
parent 9b528519e4
commit 233372303b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -83,7 +83,7 @@ describe('/libraries', () => {
refreshedAt: null,
assetCount: 0,
importPaths: [],
exclusionPatterns: [],
exclusionPatterns: expect.any(Array),
}),
);
});
@ -270,7 +270,7 @@ describe('/libraries', () => {
refreshedAt: null,
assetCount: 0,
importPaths: [],
exclusionPatterns: [],
exclusionPatterns: expect.any(Array),
}),
);
});