Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit ff3a67b

Browse files
committed
refactor(style-integration.test.ts): Fix variable name
1 parent 3208c3e commit ff3a67b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/style-integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ test('Style.create returns an object with string values', () => {
77
});
88

99
test('Style.set returns a string', () => {
10-
const styleClass = Style.set({ color: 'aqua' });
11-
expect(typeof styleClass).toBe('string');
10+
const style = Style.set({ color: 'aqua' });
11+
expect(typeof style).toBe('string');
1212
});
1313

1414
test('Style.global returns undefined', () => {

0 commit comments

Comments
 (0)