-
Notifications
You must be signed in to change notification settings - Fork 147
Upgrade dependencies and introduce unexpectedjs #173
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
Upgrade dependencies and introduce unexpectedjs #173
Conversation
fobos
left a comment
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.
👍
| "rimraf": "^2.5.4", | ||
| "semantic-release": "^6.3.2" | ||
| "semantic-release": "^7.0.2", | ||
| "unexpected": "^10.35.0" |
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.
For what reason you have changed chai to unexpected?
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.
@fobos it produces more readable test errors, obviously, we don't have that many tests, so it's a little smaller as well.
I would roll back if you have a strong opinion on assertion lib. I've been doing a lot of testing with unexpected recently and I would say I've had a better time 🙂
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.
Thanks for explanation.
I would roll back if you have a strong opinion on assertion lib.
It's ok to use unexpected. I see your points.
| "test": "npm run -s test:cli && npm run -s test:functional", | ||
| "test:cli": "mocha tests/cliAccessibility.js --reporter spec --timeout 15000", | ||
| "test:functional": "mocha tests/*.spec.js --reporter spec --timeout 15000" | ||
| "test": "npm run test:cli && npm run test:functional", |
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.
Why do we need odd output?
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.
That's clearly a mistake!
a4eb3e0 to
dd22a50
Compare
dd22a50 to
094920a
Compare
Closes #171