Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.js')
-rw-r--r--test/test.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test.js b/test/test.js
index e3f5210..05ab003 100644
--- a/test/test.js
+++ b/test/test.js
@@ -13,7 +13,7 @@ const styles = [
'Postcss'
];
-styles.forEach(style => {
+function doTest(style) {
describe(style, () => {
tests.forEach(test => {
it(test.name, done => {
@@ -35,4 +35,8 @@ styles.forEach(style => {
});
});
});
+}
+
+styles.forEach(style => {
+ doTest(style);
});