Skip to content

Commit 9aa03f0

Browse files
authoredFeb 15, 2019
Merge pull request #13 from ryotah/fix/fix-template-object-key
Fix the key name of template object (`filename` -> `fileName`)
2 parents 372e284 + bba9577 commit 9aa03f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ module.exports = function NuxtEnv ({ keys }) {
1313
const src = path.resolve(__dirname, 'lib/plugin.js')
1414
this.addPlugin({
1515
src,
16-
filename: 'nuxt-env'
16+
fileName: 'nuxt-env.js'
1717
})
1818
}

‎test/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('Module', () => {
2626
expect(FakeModule.addPlugin).toHaveBeenCalled()
2727
const { calls: { 0: { 0: calls } } } = FakeModule.addPlugin.mock
2828

29-
expect(calls.filename).toEqual('nuxt-env')
29+
expect(calls.fileName).toEqual('nuxt-env.js')
3030
expect(calls.src).toMatch(/lib\/plugin\.js/)
3131
})
3232
})

0 commit comments

Comments
 (0)