From 425362f51533f83461489cb52989159f6df99569 Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Tue, 13 Sep 2022 12:14:04 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B05510=20-=20Add=20unit=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/application/SCSSCompilationTest.php | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 test/application/SCSSCompilationTest.php diff --git a/test/application/SCSSCompilationTest.php b/test/application/SCSSCompilationTest.php new file mode 100644 index 000000000..bb47ef516 --- /dev/null +++ b/test/application/SCSSCompilationTest.php @@ -0,0 +1,38 @@ +debug($sCSS); + } + + public function CompileDefaultThemesProvider() + { + return [ + 'console' => ['css/backoffice/main.scss', ['css/backoffice/']], + 'portal' => ['env-production/itop-portal-base/portal/public/css/bootstrap-theme-combodo.scss', ['env-production//itop-portal-base/portal/public/css/']], + ]; + } + +}