Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: change callback function to arrow function
  • Loading branch information
rt33 committed Dec 18, 2017
commit a7cc179c8be1e5ba3a5374e391c243c3a031c1bd
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ function test() {
d.on('error', function errorHandler() {
});

d.run(function() {
d2.run(function() {
d.run(() => {
d2.run(() => {
const fs = require('fs');
fs.exists('/non/existing/file', function onExists() {
throw new Error('boom!');
Expand Down