Skip to content

Commit

Permalink
Update test case
Browse files Browse the repository at this point in the history
  • Loading branch information
KK578 committed Mar 12, 2016
1 parent 9e8f85d commit 04f3960
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/expected/inline_css_js/backtick.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE><html><head><title>Hello.</title><meta type="charset" content="utf-8" /></head><body><script>function foobar(){return `backtick`;}</script></body></html>
<!DOCTYPE><html><head><title>Hello.</title><meta type="charset" content="utf-8"></head><body><script>function foobar(){var a=5,string=`Templating ${a} strings`;return string}</script></body></html>
4 changes: 3 additions & 1 deletion test/fixtures/inline_css_js/backtick.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
<body>
<script>
function foobar() {
return `backtick`;
var a = 5;
var string = `Templating ${a} strings`;
return string;
}
</script>
</body>
Expand Down

0 comments on commit 04f3960

Please sign in to comment.