mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
fix(operators): Add prep to object.
This commit is contained in:
parent
fa38e7dda7
commit
24f6188e55
@ -45,9 +45,9 @@ const metaInstance = {
|
||||
};
|
||||
|
||||
const metaClass = {
|
||||
keys: { singleArg: true, validTypes: ['object'] },
|
||||
values: { singleArg: true, validTypes: ['object'] },
|
||||
assign: { spreadArgs: true, validTypes: ['array'] },
|
||||
keys: { singleArg: true, validTypes: ['object'], prep },
|
||||
values: { singleArg: true, validTypes: ['object'], prep },
|
||||
assign: { spreadArgs: true, validTypes: ['array'], prep },
|
||||
defineProperty: {
|
||||
namedArgs: ['on', 'key', 'descriptor'],
|
||||
validTypes: ['array', 'object'],
|
||||
|
@ -201,17 +201,15 @@ describe('_object.assign', () => {
|
||||
location,
|
||||
})
|
||||
).toEqual({ 0: 'a', a: 1, b: 3 });
|
||||
});
|
||||
test('throw', () => {
|
||||
expect(() =>
|
||||
expect(
|
||||
object({
|
||||
params: [],
|
||||
methodName,
|
||||
location,
|
||||
})
|
||||
).toThrowErrorMatchingInlineSnapshot(
|
||||
`"Operator Error: _object.assign - Cannot convert undefined or null to object Received: {\\"_object.assign\\":[]} at locationId."`
|
||||
);
|
||||
).toEqual({});
|
||||
});
|
||||
test('throw', () => {
|
||||
expect(() =>
|
||||
object({
|
||||
params: 'x',
|
||||
|
Loading…
x
Reference in New Issue
Block a user