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 97f5328 commit f286a6eCopy full SHA for f286a6e
lib/connection.js
@@ -272,7 +272,7 @@ class MySQLCassette {
272
async newConnection(options) {
273
for (let retries = 10; retries > 0; retries--) {
274
try {
275
- exec('service mysql start');
+ await exec('service mysql start');
276
const conn = knex({
277
client: 'mysql',
278
connection: {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "track-db-test-library",
3
- "version": "2.6.0-rc4",
+ "version": "2.6.0-rc5",
4
"description": "Test utility for Track database challenges",
5
"main": "index.js",
6
"scripts": {
0 commit comments