Skip to content

Commit 7486014

Browse files
committed
Add test
1 parent ace2074 commit 7486014

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

__tests__/input-validator.test.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ describe('api-level validator tests', () => {
3232
validator.checkApiLevel('29');
3333
};
3434
expect(func2).not.toThrow();
35+
const func3 = () => {
36+
validator.checkApiLevel('UpsideDownCake-ext5');
37+
};
38+
expect(func3).not.toThrow();
39+
const func4 = () => {
40+
validator.checkApiLevel('TiramisuPrivacySandbox');
41+
};
42+
expect(func4).not.toThrow();
3543
});
3644
});
3745

0 commit comments

Comments
 (0)