Skip to content

Commit cd1f550

Browse files
[FSSDK-11238] string value validator test addition
1 parent 5e272cf commit cd1f550

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/**
2+
* Copyright 2025, Optimizely
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
import { describe, it, expect } from 'vitest';
17+
import { validate } from './';
18+
19+
describe('validate', () => {
20+
it('should validate the given value is valid string', () => {
21+
expect(validate('validStringValue')).toBe(true);
22+
});
23+
24+
it('should return false if given value is invalid string', () => {
25+
expect(validate(null)).toBe(false);
26+
expect(validate(undefined)).toBe(false);
27+
expect(validate('')).toBe(false);
28+
expect(validate(5)).toBe(false);
29+
expect(validate(true)).toBe(false);
30+
expect(validate([])).toBe(false);
31+
});
32+
});

0 commit comments

Comments
 (0)