Closed trystant closed 6 years ago
From stacktrace on nodejs project:
2) Auth endpoints /path/to/endpoint "before all" hook: Error: Not Found
from this line of code in the test:
before(function() { return chai.request(app) .post('/path/to/endpoint') send({ 'name': 'value' }) ... }
This usually means that the endpoint doesn't exist as of yet. This is resolved by creating the endpoint.
From stacktrace on nodejs project:
from this line of code in the test:
This usually means that the endpoint doesn't exist as of yet. This is resolved by creating the endpoint.