syntax error while running collection in node js

173 Views Asked by At

while running below code

const newman = require("newman");
newman.run(
    {
        collection: require("./test.postman_collection.JSON"),
        reporters: "cli",
    },
    function (err) {
        if (err) {
            throw err;
        }
        console.log("collection run complete");
    }
);

though the collection is in proper json format still its throwing below error.

test.postman_collection.JSON:2 "info": { ^ SyntaxError: Unexpected token ':'

1

There are 1 best solutions below

0
On

In my case, the file was without extesion (.json). Adding the extension solved the error