-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance test coverage #519
Conversation
… into test-enhancement
.unload() | ||
.then(info => { | ||
expect(info).to.have.property("name", collection.name); | ||
expect(info).to.have.property("status", 2); // unloaded |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mpv1989 This seems to be timing dependent. On Linux I'm seeing 4 (being unloaded), you're seeing 2 on Windows. This currently means the test will fail on one of the two platforms depending on the value we hardcode. Any idea how to solve this? Maybe allow for 2 or 4 and assume ArangoDB will eventually unload (i.e. eventually move from 4 to 2).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rewritten test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
No description provided.