Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fix linting :/
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperelman committed May 16, 2018
1 parent 4a37c74 commit 30cc11d
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions test/Config.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,20 +337,22 @@ test('static Config.toString', t => {
config.plugin('foo').use(class TestPlugin {});

t.is(
Config.toString(Object.assign(config.toConfig(), {
module: {
defaultRules: [
{
use: [
{
loader: 'banner-loader',
options: { prefix: 'banner-prefix.txt' },
},
],
},
],
},
})).trim(),
Config.toString(
Object.assign(config.toConfig(), {
module: {
defaultRules: [
{
use: [
{
loader: 'banner-loader',
options: { prefix: 'banner-prefix.txt' },
},
],
},
],
},
})
).trim(),
`
{
plugins: [
Expand Down

0 comments on commit 30cc11d

Please sign in to comment.