data-primals-engine 1.2.4 → 1.2.6-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -48,7 +48,7 @@ function blobToFile(theBlob, fileName){
48
48
  }
49
49
 
50
50
  beforeAll(async () =>{
51
- Config.Set("modules", ["mongodb", "data", "file", "bucket", "workflow","user", "assistant"]);
51
+ Config.Set("modules", ["data", "mongodb", "file", "bucket", "workflow","user", "assistant"]);
52
52
  await initEngine();
53
53
  })
54
54
 
@@ -191,7 +191,7 @@ Valide J,SKU-J,,false
191
191
  Valide K,SKU-A,40,true`;
192
192
 
193
193
  // Exécution de la fonction d'import (hypothétique)x
194
- var blob = new Blob([csvStringToImport], {type: "text/csv"});
194
+ const blob = new Blob([csvStringToImport], {type: "text/csv"});
195
195
  fs.writeFileSync('test.csv', csvStringToImport);
196
196
  blob.path = 'test.csv';
197
197
  blob.originalFilename = 'test.csv';