You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using wiremock with node jest. When the a test fails the next test run will throw
java.lang.RuntimeException: java.net.BindException: Address already in use
The message received from the daemon indicates that the daemon has disappeared.
Build request sent: Build{id=d7d87da0-786e-4cc1-a1d8-fe362dcca312.1, currentDir=/Users/vribeiro/dev/repos/hades}
Attempting to read last messages from the daemon log...
If I rerun the task it works fine.
here is my build.gradle
plugins {
id "com.moowork.node" version "1.2.0"
id 'com.williamhill.wiremock' version '0.4.1'
}
apply plugin: "base"
apply plugin: "maven"
apply plugin: 'maven-publish'
task runJest(type: NpmTask) {
runWithWiremock = true
args = ['run', 'test']
}
zipLambda.dependsOn npmInstall
publish.dependsOn zipLambda
wiremock {
dir "$projectDir/wiremock/"
params "--verbose=true"
}
Thank you for this amazing plugin! it works great! 😄
The text was updated successfully, but these errors were encountered:
I'm using wiremock with node jest. When the a test fails the next test run will throw
If I rerun the task it works fine.
here is my build.gradle
Thank you for this amazing plugin! it works great! 😄
The text was updated successfully, but these errors were encountered: