mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
55 lines
No EOL
2.1 KiB
Gherkin
55 lines
No EOL
2.1 KiB
Gherkin
Feature: Minify Javascript
|
|
In order reduce bytes sent to client and appease YSlow
|
|
|
|
Background:
|
|
Given current environment is "build"
|
|
|
|
Scenario: Rendering inline js with the feature disabled
|
|
Given "minify_javascript" feature is "disabled"
|
|
And the Server is running at "test-app"
|
|
When I go to "/inline-js.html"
|
|
Then I should see "10" lines
|
|
|
|
Scenario: Rendering inline js with a passthrough minifier
|
|
Given the Server is running at "passthrough-app"
|
|
When I go to "/inline-js.html"
|
|
Then I should see "11" lines
|
|
|
|
Scenario: Rendering inline js with the feature enabled
|
|
Given "minify_javascript" feature is "enabled"
|
|
And the Server is running at "test-app"
|
|
When I go to "/inline-js.html"
|
|
Then I should see "5" lines
|
|
|
|
Scenario: Rendering external js with the feature enabled
|
|
Given "minify_javascript" feature is "enabled"
|
|
And the Server is running at "test-app"
|
|
When I go to "/javascripts/js_test.js"
|
|
Then I should see "1" lines
|
|
|
|
Scenario: Rendering external js with a passthrough minifier
|
|
And the Server is running at "passthrough-app"
|
|
When I go to "/javascripts/js_test.js"
|
|
Then I should see "8" lines
|
|
|
|
Scenario: Rendering inline js (coffeescript) with the feature enabled
|
|
Given "minify_javascript" feature is "enabled"
|
|
And the Server is running at "test-app"
|
|
When I go to "/inline-coffeescript.html"
|
|
Then I should see "5" lines
|
|
|
|
Scenario: Rendering external js (coffeescript) with the feature enabled
|
|
Given "minify_javascript" feature is "enabled"
|
|
And the Server is running at "test-app"
|
|
When I go to "/javascripts/coffee_test.js"
|
|
Then I should see "1" lines
|
|
|
|
Scenario: Rendering inline js (coffeescript) with a passthrough minifier
|
|
Given the Server is running at "passthrough-app"
|
|
When I go to "/inline-coffeescript.html"
|
|
Then I should see "17" lines
|
|
|
|
Scenario: Rendering external js (coffeescript) with a passthrough minifier
|
|
And the Server is running at "passthrough-app"
|
|
When I go to "/javascripts/coffee_test.js"
|
|
Then I should see "11" lines |