Skip to content

Commit 33daf44

Browse files
fix: Map lines for script block (#516)
Signed-off-by: Wolfgang Walther <[email protected]> Signed-off-by: Wolfgang Walther <[email protected]>
1 parent dbe8022 commit 33daf44

File tree

2 files changed

+28
-16
lines changed

2 files changed

+28
-16
lines changed

e2e/2.x/basic/__snapshots__/test.js.snap

+27-16
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,35 @@
33
exports[`generates source maps for .vue files 1`] = `
44
{
55
"file": "./components/Basic.vue",
6-
"mappings": ";;;;;;eACe;AACbA,MAAI,EAAE,OADO;AAEbC,UAAQ,EAAE;AACRC,kBAAc,EAAE,SAASA,cAAT,GAA0B;AACxC,aAAO;AACLC,WAAG,EAAE,KAAKC,OADL;AAELC,YAAI,EAAE,CAAC,KAAKD,OAFP;AAGLE,cAAM,EAAE,KAAKF;AAHR,OAAP;AAKD;AAPO,GAFG;AAWbG,MAAI,EAAE,SAASA,IAAT,GAAgB;AACpB,WAAO;AACLC,SAAG,EAAE,4BADA;AAELJ,aAAO,EAAE;AAFJ,KAAP;AAID,GAhBY;AAiBbK,SAAO,EAAE;AACPC,eAAW,EAAE,SAASA,WAAT,GAAuB;AAClC,WAAKN,OAAL,GAAe,CAAC,KAAKA,OAArB;AACD;AAHM;AAjBI,C",
7-
"names": [
8-
"name",
9-
"computed",
10-
"headingClasses",
11-
"red",
12-
"isCrazy",
13-
"blue",
14-
"shadow",
15-
"data",
16-
"msg",
17-
"methods",
18-
"toggleClass",
19-
],
6+
"mappings": ";;;;;;eAuBe;AACb,MAAI,EAAE,OADO;AAEb,UAAQ,EAAE;AACR,kBAAc,EAAE,SAAS,cAAT,GAA0B;AACxC,aAAO;AACL,WAAG,EAAE,KAAK,OADL;AAEL,YAAI,EAAE,CAAC,KAAK,OAFP;AAGL,cAAM,EAAE,KAAK;AAHR,OAAP;AAKD;AAPO,GAFG;AAWb,MAAI,EAAE,SAAS,IAAT,GAAgB;AACpB,WAAO;AACL,SAAG,EAAE,4BADA;AAEL,aAAO,EAAE;AAFJ,KAAP;AAID,GAhBY;AAiBb,SAAO,EAAE;AACP,eAAW,EAAE,SAAS,WAAT,GAAuB;AAClC,WAAK,OAAL,GAAe,CAAC,KAAK,OAArB;AACD;AAHM;AAjBI",
7+
"names": [],
208
"sources": [
21-
"Basic.vue",
9+
"components/Basic.vue",
2210
],
2311
"sourcesContent": [
24-
"
12+
"<template>
13+
<div class="hello">
14+
<h1 :class="headingClasses">{{ msg }}</h1>
15+
</div>
16+
</template>
17+
18+
<style module="css">
19+
.testA {
20+
background-color: red;
21+
}
22+
</style>
23+
<style module>
24+
.testB {
25+
background-color: blue;
26+
}
27+
</style>
28+
<style>
29+
.testC {
30+
background-color: blue;
31+
}
32+
</style>
33+
34+
<script>
2535
export default {
2636
name: 'basic',
2737
computed: {
@@ -45,6 +55,7 @@ export default {
4555
}
4656
}
4757
}
58+
</script>
4859
",
4960
],
5061
"version": 3,

packages/vue2-jest/lib/process.js

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ function processScript(scriptPart, filePath, config) {
4848

4949
const result = transformer.process(scriptPart.content, filePath, config)
5050
result.code = stripInlineSourceMap(result.code)
51+
result.map = mapLines(scriptPart.map, result.map)
5152
result.externalSrc = externalSrc
5253
return result
5354
}

0 commit comments

Comments
 (0)