-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Adamou02/pre-main
fix: running workflow with an old version of node.js
- Loading branch information
Showing
9 changed files
with
63 additions
and
21 deletions.
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
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
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,3 +1,19 @@ | ||
node_modules | ||
packages | ||
.angular | ||
#Dossiers | ||
.angular/ | ||
node_modules/ | ||
package/ | ||
dist/ | ||
|
||
#Fichiers | ||
.angular-cli.json | ||
*.log | ||
*.iml | ||
|
||
#Dossiers spécifiques à Visual Studio Code | ||
.vscode/ | ||
|
||
#Fichiers spécifiques à macOS | ||
Check warning on line 15 in .gitignore GitHub Actions / spellcheck
|
||
.DS_Store | ||
|
||
#Fichiers de configuration spécifiques à chaque utilisateur | ||
Check warning on line 18 in .gitignore GitHub Actions / spellcheck
Check warning on line 18 in .gitignore GitHub Actions / spellcheck
Check warning on line 18 in .gitignore GitHub Actions / spellcheck
|
||
.editorconfig |
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// karma.conf.js | ||
module.exports = function(config) { | ||
config.set({ | ||
frameworks: ['jasmine', '@angular-devkit/build-angular'], | ||
plugins: [ | ||
require('karma-jasmine'), | ||
require('karma-chrome-launcher'), | ||
require('@angular-devkit/build-angular/plugins/karma') | ||
], | ||
browsers: ['ChromeHeadless'], // Utilisez Chrome en mode sans tête | ||
reporters: ['progress', 'kjhtml'], | ||
port: 9876, | ||
colors: true, | ||
logLevel: config.LOG_INFO, | ||
autoWatch: true, | ||
singleRun: false, | ||
restartOnFileChange: true | ||
}); | ||
}; | ||
|
12 changes: 6 additions & 6 deletions
12
src/app/components/tree-folder/linked-hashmap/linked-hashmap.component.spec.ts
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
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
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
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