Skip to main content
Module

x/packup/sass_util_test.ts

📦 Zero-config web application packager in Deno
Go to Latest
File
import { compile } from "./sass_util.ts";import { assertEquals } from "./test_deps.ts";
Deno.test("sass_util - compile", async () => { const scss = ".foo { &__bar { margin: 0; } }"; const css = await compile(scss);
assertEquals(css, ".foo__bar {\n margin: 0; }\n");});