Skip to content

Commit 0e012d3

Browse files
David EllingsworthDavid Ellingsworth
authored andcommitted
Fix style issues identified by lint.
1 parent 5ab6822 commit 0e012d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/WebpackConfig.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -944,12 +944,12 @@ describe('WebpackConfig object', () => {
944944

945945
config.addExternals({ 'jquery': 'jQuery', 'react': 'react' });
946946
config.addExternals({ 'lodash': 'lodash' });
947-
config.addExternals(/^(jquery|\$)$/i);
947+
config.addExternals(/^(jquery|\$)$/i);
948948

949949
expect(config.externals).to.deep.equals([
950-
{ 'jquery': 'jQuery', 'react': 'react'},
950+
{ 'jquery': 'jQuery', 'react': 'react' },
951951
{ 'lodash': 'lodash' },
952-
/^(jquery|\$)$/i
952+
/^(jquery|\$)$/i
953953
]);
954954
});
955955
});

0 commit comments

Comments
 (0)