mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
refactor(core): Fix type errors in workflow, core, nodes-langchain, and nodes-base (no-changelog) (#9450)
This commit is contained in:
committed by
GitHub
parent
d9616fc36f
commit
2bdc459bb2
@@ -290,7 +290,7 @@ describe('AugmentObject', () => {
|
||||
});
|
||||
|
||||
test('should work with complex values on first level', () => {
|
||||
const originalObject = {
|
||||
const originalObject: any = {
|
||||
a: {
|
||||
b: {
|
||||
cc: '3',
|
||||
@@ -483,7 +483,7 @@ describe('AugmentObject', () => {
|
||||
|
||||
test('should be faster than doing a deepCopy', () => {
|
||||
const iterations = 100;
|
||||
const originalObject: IDataObject = {
|
||||
const originalObject: any = {
|
||||
a: {
|
||||
b: {
|
||||
c: {
|
||||
@@ -530,7 +530,7 @@ describe('AugmentObject', () => {
|
||||
});
|
||||
|
||||
test('should return property descriptors', () => {
|
||||
const originalObject = {
|
||||
const originalObject: any = {
|
||||
x: {
|
||||
y: {},
|
||||
z: {},
|
||||
@@ -559,7 +559,7 @@ describe('AugmentObject', () => {
|
||||
});
|
||||
|
||||
test('should return valid values on `has` calls', () => {
|
||||
const originalObject = {
|
||||
const originalObject: any = {
|
||||
x: {
|
||||
y: {},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user