instead of "describe" "xdescribe" was defined which made the test pending in results. This has now been resolved.

This commit is contained in:
2019-07-26 21:06:45 +02:00
parent e5d5bdefd6
commit 135375cb94

View File

@@ -1,7 +1,7 @@
/* eslint-disable no-return-assign */
const net = require('net');
xdescribe('As a developer I want the server to start', () => {
describe('As a developer I want the server to start', () => {
beforeEach(() =>
this.server = require('src/webserver/server'));