From dd5f3c463fab336d694f426dcad11a1783590fc9 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 5 Feb 2022 07:52:13 +0100 Subject: Ported from import syntax to modules --- test/_bem.scss | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'test/_bem.scss') diff --git a/test/_bem.scss b/test/_bem.scss index 30ed131..b7bd6b4 100644 --- a/test/_bem.scss +++ b/test/_bem.scss @@ -1,19 +1,21 @@ -@include describe('BEM') { +@use 'true' as *; + +@include describe('bem') { // // The following unit tests only test the BEM mixins. // Since they are wrappers for the BEM functions, the latter are // automatically covered. // - @import 'bem/iro-bem-block'; - @import 'bem/iro-bem-composed-of'; - @import 'bem/iro-bem-at-theme'; - @import 'bem/iro-bem-element'; - @import 'bem/iro-bem-related-element'; - @import 'bem/iro-bem-next-twin-element'; - @import 'bem/iro-bem-modifier'; - @import 'bem/iro-bem-suffix'; - @import 'bem/iro-bem-state'; - @import 'bem/iro-bem-multi'; + @import 'bem/block'; + @import 'bem/composed-of'; + @import 'bem/at-theme'; + @import 'bem/element'; + @import 'bem/related-element'; + @import 'bem/next-twin-element'; + @import 'bem/modifier'; + @import 'bem/suffix'; + @import 'bem/state'; + @import 'bem/multi'; @import 'bem/examples'; } -- cgit v1.3.1