import { isBasicValue } from "../../utility/others/isBasicValue";
describe('isBasicValue', () => {
test('isBasicValue should return `true` if received a basic value', () => {
for (const v of received) {
expect(isBasicValue(v)).toBeTruthy();
test('isBasicValue should return `false` if received a non basic value', () => {
{ name: 'duan', age: 20 },
for (const v of received) {
expect(isBasicValue(v)).toBeFalsy();