Skip to content

Commit

Permalink
chore: var -> let
Browse files Browse the repository at this point in the history
  • Loading branch information
bebraw committed Sep 3, 2020
1 parent cf5b5fe commit 10cf6ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/merge-with-customize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function customizeMergeTests(merge) {
});

it("should pass key to array customizer", function () {
var receivedKey;
let receivedKey;
const first = {
entry: ["a"],
};
Expand Down Expand Up @@ -68,7 +68,7 @@ function customizeMergeTests(merge) {
});

it("should pass key to object customizer", function () {
var receivedKey;
let receivedKey;
const first = {
entry: {
a: "foo",
Expand All @@ -92,7 +92,7 @@ function customizeMergeTests(merge) {
});

it("should customize plugins", function () {
var receivedKey;
let receivedKey;
const config1 = {
plugins: [
new webpack.DefinePlugin({
Expand Down

0 comments on commit 10cf6ff

Please sign in to comment.