Skip to content

Commit 10871d1

Browse files
committed
fix: tests removed unused function
1 parent b27cdef commit 10871d1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/index.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ describe('index exports', () => {
88
expect(index.genBase36Hash).toBeDefined();
99
expect(index.transpile).toBeDefined();
1010
expect(index.transpileAtomic).toBeDefined();
11-
expect(index.transformNestedSelectors).toBeDefined();
1211
expect(index.splitAtomicAndNested).toBeDefined();
1312
expect(index.processAtomicProps).toBeDefined();
1413
expect(index.overrideLonghand).toBeDefined();
15-
1614
expect(index.build).toBeDefined();
1715
expect(index.camelToKebabCase).toBeDefined();
1816
expect(index.applyCssValue).toBeDefined();
@@ -22,7 +20,6 @@ describe('index exports', () => {
2220
expect(typeof index.genBase36Hash).toBe('function');
2321
expect(typeof index.transpile).toBe('function');
2422
expect(typeof index.transpileAtomic).toBe('function');
25-
expect(typeof index.transformNestedSelectors).toBe('function');
2623
expect(typeof index.splitAtomicAndNested).toBe('function');
2724
expect(typeof index.processAtomicProps).toBe('function');
2825
expect(typeof index.overrideLonghand).toBe('function');

0 commit comments

Comments
 (0)