Skip to content

Commit 4416fe3

Browse files
committed
chore: update tests descriptions
1 parent 5ddd094 commit 4416fe3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__tests__/index.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ describe('getShadowPropsFromStyle function test', () => {
4444
});
4545
});
4646

47-
test('return black shadow property if not set but shadowOffset is presented', () => {
47+
test('return black shadow color property if not set but shadowOffset is presented', () => {
4848
const result = getShadowPropsFromStyle({
4949
shadowOffset: {
5050
width: -4,
@@ -62,7 +62,7 @@ describe('getShadowPropsFromStyle function test', () => {
6262
});
6363
});
6464

65-
test('return black shadow property if not set but shadowOffset is presented', () => {
65+
test('return black shadow color property if not set but shadowOpacity is presented', () => {
6666
const result = getShadowPropsFromStyle({
6767
shadowOpacity: 1,
6868
});
@@ -74,7 +74,7 @@ describe('getShadowPropsFromStyle function test', () => {
7474
});
7575
});
7676

77-
test('return black shadow property if not set but shadowRadius is presented', () => {
77+
test('return black shadow color property if not set but shadowRadius is presented', () => {
7878
const result = getShadowPropsFromStyle({
7979
shadowRadius: 4,
8080
});

0 commit comments

Comments
 (0)