Skip to content

Commit

Permalink
Fix minify js tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tdreyno committed Jun 19, 2017
1 parent b44129e commit 961b925
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions middleman-core/features/minify_javascript.feature
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ Feature: Minify Javascript
})();
</script>
<script>
;(function() {
this;
should();
too();
})();
;(function() {
this;
should();
too();
})();
</script>
<script type='text/javascript'>
//<!--
;(function() {
one;
line();
here();
})();
//-->
//<!--
;(function() {
one;
line();
here();
})();
//-->
</script>
<script type='text/html'>
I'm a jQuery {{template}}.
I'm a jQuery {{template}}.
</script>
"""

Expand Down Expand Up @@ -66,23 +66,23 @@ Feature: Minify Javascript
})();
</script>
<script>
;(function() {
this;
should();
too();
})();
;(function() {
this;
should();
too();
})();
</script>
<script type='text/javascript'>
//<!--
;(function() {
one;
line();
here();
})();
//-->
//<!--
;(function() {
one;
line();
here();
})();
//-->
</script>
<script type='text/html'>
I'm a jQuery {{template}}.
I'm a jQuery {{template}}.
</script>
"""

Expand All @@ -108,15 +108,15 @@ Feature: Minify Javascript
Hello
</script>
<script>
Hello
Hello
</script>
<script type='text/javascript'>
//<!--
//<!--
Hello
//-->
//-->
</script>
<script type='text/html'>
I'm a jQuery {{template}}.
I'm a jQuery {{template}}.
</script>
"""

Expand All @@ -134,15 +134,15 @@ Feature: Minify Javascript
!function(){should(),all.be(),on={one:line}}();
</script>
<script>
!function(){should(),too()}();
!function(){should(),too()}();
</script>
<script type='text/javascript'>
//<!--
//<!--
!function(){one,line(),here()}();
//-->
//-->
</script>
<script type='text/html'>
I'm a jQuery {{template}}.
I'm a jQuery {{template}}.
</script>
"""

Expand Down

0 comments on commit 961b925

Please sign in to comment.