Skip to content
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

Make t.is() use Object.is() #1353

Merged
merged 5 commits into from
Apr 16, 2017
Merged

Make t.is() use Object.is() #1353

merged 5 commits into from
Apr 16, 2017

Conversation

alexrussell
Copy link
Contributor

@alexrussell alexrussell commented Apr 10, 2017

Refactor is assertion to use Object.is() rather than ===.
Also add a few more test cases in for is to make it clearer what it is expected to do.

As per discussion in #1339, this will make it more sensible to compare NaN against NaN.

The good:

  • NaN now compares to NaN in a way that people expect (truthily)

The odd:

Fixes #1339

/cc @novemberborn, @sotojuan, @sindresorhus

… so that `NaN` compares favourably to another `NaN`.

- Update documentation to explain this.
- Update tests to explicitly test for this (including adding a few extra passing tests for `t.is()`).
…matically, x = y, rather than using `===` or `Object.is`
@alexrussell alexrussell changed the title Is uses object is Refactor is to use Object.is Apr 10, 2017
Copy link
Member

@novemberborn novemberborn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is great. I think we can improve the messaging a little bit, and perhaps we should make sure -0 is printed correctly.

test/assert.js Outdated
message: 'my message',
values: [
{label: 'Actual:', formatted: /0/},
{label: 'Must be strictly equal (using Object.is) to:', formatted: /0/}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suspect this outputs 0, rather than -0? #1341 would fix, but I think we should work around this in this branch too.

lib/assert.js Outdated
pass(this);
} else {
const diff = formatAssertError.formatDiff(actual, expected);
const values = diff ? [diff] : [
formatAssertError.formatWithLabel('Actual:', actual),
formatAssertError.formatWithLabel('Must be strictly equal to:', expected)
formatAssertError.formatWithLabel('Must be strictly equal (using Object.is) to:', expected)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps we can take a leaf from the Object.is() description and say Must be the same value as:.

readme.md Outdated
@@ -914,23 +914,23 @@ Assert that `value` is `false`.

### `.is(value, expected, [message])`

Assert that `value` is equal to `expected`.
Assert that `value` is equal to `expected` (using `Object.is()` for equality testing).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could say:

Assert that value is the same as expected. This is based on Object.is().

@alexrussell
Copy link
Contributor Author

@novemberborn the latest commit addresses all three of these. I have gone for "the same as" rather than "the same value as" (you used both in your two comments on this) so let me know if you'd prefer "the same value as".

Also, the 0/-0 thing was my bad - Just adding the - into the test expectation worked, so it appears that the value formatter does indeed include the negative sign. Phew!

I think when I originally did this work on the tests I was really unclear as to how the AVA test helpers worked with all the formatted values and regexes, etc., so I went for a conservative 0 and simply forgot to go back and see whether it worked as I'd expect.

Copy link
Member

@novemberborn novemberborn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have gone for "the same as" rather than "the same value as" (you used both in your two comments on this) so let me know if you'd prefer "the same value as".

"the same as" is great.

Also, the 0/-0 thing was my bad - Just adding the - into the test expectation worked, so it appears that the value formatter does indeed include the negative sign. Phew!

Nice.

Just one documentation nit, and I'd like to hear from @sindresorhus or @vadimdemedes on this before merging.

readme.md Outdated
@@ -914,11 +914,11 @@ Assert that `value` is `false`.

### `.is(value, expected, [message])`

Assert that `value` is equal to `expected` (using `Object.is()` for equality testing).
Assert that `value` is the same as `expected`. This is based on using [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "using" seems superfluous. Either This is based on or This relies on I think. Also for .not().

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My bad. Updated.

@sindresorhus
Copy link
Member

sindresorhus commented Apr 16, 2017

I'm a little bit sceptical of differentiating between -0 and +0, but I don't think it happens that often in real code anyways, and a testing framework should in general be very strict. Let's try it out and we can always revert if it's a big annoyance to users.

@sindresorhus sindresorhus changed the title Refactor is to use Object.is Make t.is() use Object.is() Apr 16, 2017
@sindresorhus sindresorhus merged commit db39961 into avajs:master Apr 16, 2017
@sindresorhus
Copy link
Member

Thank you @alexrussell :)

@alexrussell
Copy link
Contributor Author

Woohoo thanks for merging 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants