chore(app): format files
Some checks failed
🚀 Release / release (pull_request) Failing after 3m20s

This commit is contained in:
2026-02-03 21:07:10 +01:00
parent c3764872e8
commit aaec37a9d8
3 changed files with 8 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
import { describe, it, expect } from 'vitest';
import { grid } from '$lib/graph-templates/grid';
import { tree } from '$lib/graph-templates/tree';
import { describe, expect, it } from 'vitest';
describe('graph-templates', () => {
describe('grid', () => {

View File

@@ -1,12 +1,5 @@
import { describe, it, expect } from 'vitest';
import {
snapToGrid,
lerp,
humanizeNumber,
humanizeDuration,
debounce,
clone
} from '$lib/helpers';
import { clone, debounce, humanizeDuration, humanizeNumber, lerp, snapToGrid } from '$lib/helpers';
import { describe, expect, it } from 'vitest';
describe('helpers', () => {
describe('snapToGrid', () => {
@@ -112,7 +105,9 @@ describe('helpers', () => {
it('should only call once when invoked multiple times within delay', () => {
let callCount = 0;
const fn = debounce(() => { callCount++; }, 100);
const fn = debounce(() => {
callCount++;
}, 100);
fn();
const firstCall = callCount;
fn();

View File

@@ -1,5 +1,5 @@
import { describe, it, expect } from 'vitest';
import { mergeDeep, isObject } from '$lib/helpers/deepMerge';
import { isObject, mergeDeep } from '$lib/helpers/deepMerge';
import { describe, expect, it } from 'vitest';
describe('deepMerge', () => {
describe('isObject', () => {