We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 075f5ea commit 8a3ac03Copy full SHA for 8a3ac03
test/tst_neovimconnector.cpp
@@ -104,6 +104,7 @@ private slots:
104
void connectToSocket() {
105
QFETCH(QString, socketname);
106
107
+ QDir().remove(socketname);
108
// Start nvim
109
QProcess p;
110
p.setProgram("nvim");
@@ -120,7 +121,7 @@ private slots:
120
121
qDebug() << c->connectionDescription();
122
QSignalSpy onReady(c, SIGNAL(ready()));
123
QVERIFY(onReady.isValid());
- QVERIFY(SPYWAIT(onReady));
124
+ QVERIFY(SPYWAIT(onReady, 5000 /*msec*/));
125
126
QCOMPARE(c->connectionType(), NeovimConnector::SocketConnection);
127
}
0 commit comments