8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c05aba commit 4e9522fCopy full SHA for 4e9522f
test/index.js
@@ -252,14 +252,14 @@ describe('PluginError()', function () {
252
done();
253
});
254
255
- it('should not modify error argument', function(done) {
+ it('should not modify error argument', function (done) {
256
var realErr = { message: 'something broke' };
257
new PluginError('test', realErr);
258
expect(realErr).toEqual({ message: 'something broke' });
259
260
261
262
- it('should not modify options argument', function(done) {
+ it('should not modify options argument', function (done) {
263
var opts = { showStack: true };
264
new PluginError('test', 'message', opts);
265
expect(opts).toEqual({ showStack: true });
0 commit comments