-
-
Notifications
You must be signed in to change notification settings - Fork 306
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
t.throws throws with "Cannot delete property" #320
Comments
f66724f implies that the purpose is ensuring that the property is enumerable (even in ES3). It should work fine with custom errors, unless their "message" property is nonconfigurable for some reason. What test code is creating this error? |
The error is coming from https://github.com/dcousens/typeforce/blob/master/index.js#L13-L20, as I'm putting that repository under Even ensuring the property is |
So, a few reactions:
|
That was my first thought, but node 6 doesn't allow that? (or am I doing something else wrong?) TypeError: Cannot redefine property: message
Couldn't you just check that via: assert(Object.keys(err).some(x => x === 'message')) |
Even easier, and ES3-compatible, with Because |
Thanks mate, so for tomorrows change, I'll be able to get away with changing: |
Yep, that's the idea. |
Thanks @ljharb :) |
- [Fix] `throws`: only reassign “message” when it is not already non-enumerable (#320) - [Fix] show path for error messages on windows (#316) - [Fix] `.only` should not run multiple tests with the same name (#299, #303) - [Deps] update `glob`, `inherits` - [Dev Deps] update `concat-stream`, `tap`, `tap-parser`, `falafel` - [Tests] [Dev Deps] Update to latest version of devDependencies tap (v7) and tap-parser (v2) (#318) - [Tests] ensure the max_listeners test has passing output - [Docs] improvements (#298, #317)
Reference: https://github.com/substack/tape/blob/master/lib/test.js#L448
This seems like really odd behaviour and doesn't work with custom errors?
The text was updated successfully, but these errors were encountered: