Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Pinta365 committed Mar 18, 2024
1 parent 1fc8f4f commit 3bdd573
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions tests/deepmerge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,12 @@ test("Map Replace", () => {
});

test("Basic deepMerge scenario with undefined", () => {

const obj1 = {
arr: [1, 2, 3]
arr: [1, 2, 3],
};

const obj2 = {
arr: [3, 4, 5]
arr: [3, 4, 5],
};

const merged = deepMerge(obj1, undefined, obj2);
Expand Down
5 changes: 2 additions & 3 deletions tests/simplemerge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ test("Basic simpleMerge scenario", () => {
});

test("Basic simpleMerge scenario with undefined", () => {

const obj1 = {
arr: [1, 2, 3]
arr: [1, 2, 3],
};

const obj2 = {
arr: [3, 4, 5]
arr: [3, 4, 5],
};

const merged = simpleMerge(obj1, undefined, obj2);
Expand Down

0 comments on commit 3bdd573

Please sign in to comment.