Skip to content

Commit

Permalink
refactor(vscode): split ConfigService and Config
Browse files Browse the repository at this point in the history
  • Loading branch information
Sysix committed Nov 20, 2024
1 parent 878e770 commit e62b2de
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions editors/vscode/client/config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ import { strictEqual } from 'assert';
import { Config } from './Config.js';

suite('Config', () => {

test('default values on initialization', () => {
const config = new Config();

strictEqual(config.runTrigger, 'onType');
strictEqual(config.enable, true);
strictEqual(config.trace, 'off');
strictEqual(config.configPath, '.eslintrc');
strictEqual(config.binPath, '');
});

})
});

0 comments on commit e62b2de

Please sign in to comment.