-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
module.exports = { | ||
ci: { | ||
collect: { | ||
// Spécifiez les options de collecte ici | ||
// Par exemple, vous pouvez définir le nombre de runs et les URL à tester | ||
numberOfRuns: 3, | ||
url: ['https://agir.beta.gouv.fr/'], // Remplacez par l'URL de votre app en développement ou en production | ||
}, | ||
assert: { | ||
assertions: { | ||
// Définissez ici les assertions pour les scores que vous voulez atteindre. | ||
// Exemple : 'categories:performance': ['error', {minScore: 0.9}] | ||
}, | ||
}, | ||
upload: { | ||
target: 'temporary-public-storage', | ||
target: 'temporary-public-storage', // Pour tester, utilisez 'temporary-public-storage' | ||
}, | ||
}, | ||
}; |