Skip to content

Commit cae38ed

Browse files
committed
Working vitest
Signed-off-by: worksofliam <mrliamallan@live.co.uk>
1 parent 1cea51f commit cae38ed

File tree

4 files changed

+78
-64
lines changed

4 files changed

+78
-64
lines changed

package-lock.json

Lines changed: 75 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

src/ui/dspf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ export type DisplayType = "input" | "output" | "both" | "const" | "hidden";
509509

510510
export class FieldInfo {
511511
public value: string | undefined;
512-
public type: string | undefined
512+
public type: string | undefined;
513513
public primitiveType: "char" | "decimal" | undefined;
514514
public displayType: DisplayType | undefined;
515515
public length: number = 0;

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@
1212
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
1313
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
1414
// "noUnusedParameters": true, /* Report errors on unused parameters. */
15-
}
15+
},
16+
"exclude": ["src/tests"]
1617
}

0 commit comments

Comments
 (0)