Skip to content

Commit

Permalink
add test for (T1265287)
Browse files Browse the repository at this point in the history
  • Loading branch information
GoodDayForSurf committed Dec 11, 2024
1 parent e291747 commit 49e21ea
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ describe('BootstrapExtractor', () => {
extractor.getSetterServiceCode = (): string => setterServiceCode;
extractor.getCollectorServiceCode = (): string => collectorServiceCode;

expect(await extractor.sassProcessor())
.toBe(`${functions.toString()}
${extractor.getVariables(variables.toString())}
const result = await extractor.sassProcessor();

expect(result.includes('@import "variables-dark";')).toBeFalsy();

expect(result).toBe(`${functions.toString()}
${variables.toString()}
${variablesDark.toString()}
${testSassString}
${setterServiceCode}
Expand Down

0 comments on commit 49e21ea

Please sign in to comment.