mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
test(core): fix get url integration test
This commit is contained in:
@@ -43,7 +43,7 @@ describe('Get URL (Express Application)', () => {
|
||||
await app.getUrl();
|
||||
} catch (err) {
|
||||
expect(err).to.be.eql(
|
||||
'app.listen needs to be called before calling app.getUrl',
|
||||
'app.listen() needs to be called before calling app.getUrl()',
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -36,7 +36,7 @@ describe('Get URL (Fastify Application)', () => {
|
||||
await app.getUrl();
|
||||
} catch (err) {
|
||||
expect(err).to.be.eql(
|
||||
'app.listen needs to be called before calling app.getUrl',
|
||||
'app.listen() needs to be called before calling app.getUrl()',
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user