Skip to content

Commit

Permalink
other: Prettified code in kipper-config-file-interpreter.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Luna-Klatzer committed Jun 24, 2024
1 parent 273611c commit ab870d4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/module/config/kipper-config-file-interpreter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ describe("KipperConfigInterpreter", () => {
assert.equal(config.outDir, `${pwd}/dist`);
assert.deepEqual(config.compiler.version, semver.parse(semver.clean(kipConfigVersion)));
assert.instanceOf(config.compiler.target, KipperTypeScriptTarget);
assert.deepEqual(config.files, [{
src: `${pwd}/test/kipper-files/main.kip`,
outDir: `${pwd}/dist`
}]);
assert.deepEqual(config.files, [
{
src: `${pwd}/test/kipper-files/main.kip`,
outDir: `${pwd}/dist`,
},
]);
assert.deepEqual(config.resources, [
{ src: `${pwd}/img/icon.png`, out: `${pwd}/dist/img/icon.png` },
{ src: `${pwd}/img/Kipper-Logo-without-head.png`, out: `${pwd}/dist/new-img-folder/icon.png` },
Expand Down

0 comments on commit ab870d4

Please sign in to comment.