We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f702fe commit 6f3270dCopy full SHA for 6f3270d
test/test.js
@@ -141,6 +141,7 @@ describe('vue-loader', function () {
141
getFile('test.build.js.map', function (map) {
142
var smc = new SourceMapConsumer(JSON.parse(map))
143
getFile('test.build.js', function (code) {
144
+ console.log(code)
145
var line
146
code.split('\n').some(function (l, i) {
147
if (l.indexOf('Hello from Component A') > -1) {
@@ -153,7 +154,7 @@ describe('vue-loader', function () {
153
154
column: 0
155
})
156
expect(pos.source.indexOf('webpack:///test/fixtures/basic.vue') > -1)
- expect(pos.line).to.equal(4)
157
+ expect(pos.line).to.equal(15)
158
done()
159
160
0 commit comments