mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
fix: remove unused imports in test files (ESLint)
- validators.test.js: remove unused execSync (only execFileSync used) - skill-create-output.test.js: remove unused path module
This commit is contained in:
parent
a74d708f7f
commit
64796f99be
2 changed files with 1 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ const assert = require('assert');
|
|||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
const os = require('os');
|
||||
const { execSync, execFileSync } = require('child_process');
|
||||
const { execFileSync } = require('child_process');
|
||||
|
||||
const validatorsDir = path.join(__dirname, '..', '..', 'scripts', 'ci');
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@
|
|||
*/
|
||||
|
||||
const assert = require('assert');
|
||||
const path = require('path');
|
||||
|
||||
// Import the module
|
||||
const { SkillCreateOutput } = require('../../scripts/skill-create-output');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue