forked from SassNinja/postcss-extract-media-query
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
because the plugin has been reworked, the tests need to get adjusted as well 1. combine & minimize option are no longer supported and thus need to get removed 2. since the plugin has changed from sync to async the tests need to handle the new promise flow appropriately in the course of this I've also added a vscode launch.json for easier debugging
- Loading branch information
Showing
2 changed files
with
85 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Verwendet IntelliSense zum Ermitteln möglicher Attribute. | ||
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. | ||
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "run test", | ||
"program": "${workspaceFolder}/node_modules/.bin/_mocha", | ||
"args": ["--timeout", "60000"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "example: gulp", | ||
"program": "${workspaceFolder}/examples/gulp/node_modules/.bin/gulp", | ||
"cwd": "${workspaceFolder}/examples/gulp" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters