mirror of
https://github.com/xryul/gremlins.git
synced 2026-07-22 08:32:49 +00:00
14 lines
447 B
TypeScript
14 lines
447 B
TypeScript
import assert from 'node:assert/strict';
|
|
import { describe, it } from 'node:test';
|
|
|
|
import { DEFAULT_SETTINGS } from '../src/settings-model.ts';
|
|
|
|
describe('gremlins settings', () => {
|
|
it('keeps click-to-fix disabled by default', () => {
|
|
assert.equal(DEFAULT_SETTINGS.enableClickToFix, false);
|
|
});
|
|
|
|
it('keeps list-indentation warnings disabled by default', () => {
|
|
assert.equal(DEFAULT_SETTINGS.showListIndentation, false);
|
|
});
|
|
});
|