Skip to content

Commit 189beee

Browse files
committed
lint fix
1 parent 6073478 commit 189beee

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

test/gridsetHelpers.misc.test.ts

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import { describe, expect, it } from '@jest/globals';
2-
import { createFileMapXml, createSettingsXml, generateGrid3Guid } from '../src/processors/gridset/helpers';
2+
import {
3+
createFileMapXml,
4+
createSettingsXml,
5+
generateGrid3Guid,
6+
} from '../src/processors/gridset/helpers';
37

48
describe('Gridset helper misc utilities', () => {
59
it('generates a GUID-like value', () => {
@@ -8,15 +12,22 @@ describe('Gridset helper misc utilities', () => {
812
});
913

1014
it('builds settings XML with overrides', () => {
11-
const xml = createSettingsXml('Home', { scanEnabled: true, hoverTimeoutMs: 1500, language: 'en-GB' });
15+
const xml = createSettingsXml('Home', {
16+
scanEnabled: true,
17+
hoverTimeoutMs: 1500,
18+
language: 'en-GB',
19+
});
1220
expect(xml).toContain('<StartGrid>Home</StartGrid>');
1321
expect(xml).toContain('<ScanEnabled>true</ScanEnabled>');
1422
expect(xml).toContain('<HoverTimeoutMs>1500</HoverTimeoutMs>');
1523
expect(xml).toContain('<Language>en-GB</Language>');
1624
});
1725

1826
it('builds file map XML for multiple grids', () => {
19-
const xml = createFileMapXml([{ name: 'Main', path: 'main.gridset' }, { name: 'Alt', path: 'alt.gridset', dynamicFiles: ['dyn1'] }]);
27+
const xml = createFileMapXml([
28+
{ name: 'Main', path: 'main.gridset' },
29+
{ name: 'Alt', path: 'alt.gridset', dynamicFiles: ['dyn1'] },
30+
]);
2031
expect(xml).toContain('main.gridset');
2132
expect(xml).toContain('alt.gridset');
2233
expect(xml).toContain('<DynamicFiles>');

0 commit comments

Comments
 (0)