Skip to content

Commit 8553c66

Browse files
authored
Merge pull request #2048 from sass/merge-main
Merge main into feature.v2
2 parents 4801739 + 378420f commit 8553c66

File tree

430 files changed

+7715
-2658
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

430 files changed

+7715
-2658
lines changed

js-api-spec/value/boolean.test.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// MIT-style license that can be found in the LICENSE file or at
33
// https://opensource.org/licenses/MIT.
44

5-
import {Value, sassTrue, sassFalse} from 'sass';
5+
import {Value, sassTrue, sassFalse, SassBoolean} from 'sass';
66

77
describe('Sass boolean', () => {
88
describe('sassTrue', () => {
@@ -24,6 +24,10 @@ describe('Sass boolean', () => {
2424
expect(value.assertBoolean()).toBe(sassTrue);
2525
});
2626

27+
it('is a SassBoolean instance', () => {
28+
expect(value).toBeInstanceOf(SassBoolean);
29+
});
30+
2731
it("isn't any other type", () => {
2832
expect(value.assertCalculation).toThrow();
2933
expect(value.assertColor).toThrow();
@@ -55,6 +59,10 @@ describe('Sass boolean', () => {
5559
expect(value.assertBoolean()).toBe(sassFalse);
5660
});
5761

62+
it('is a SassBoolean instance', () => {
63+
expect(value).toBeInstanceOf(SassBoolean);
64+
});
65+
5866
it("isn't any other type", () => {
5967
expect(value.assertCalculation).toThrow();
6068
expect(value.assertColor).toThrow();

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/arguments/invocation.hrx

-111
This file was deleted.

0 commit comments

Comments
 (0)