s4s-editor / local-scratch-vm /test /fixtures /dispatch-test-service.js
soiz1's picture
Upload 811 files
30c32c8 verified
raw
history blame
279 Bytes
class DispatchTestService {
returnFortyTwo () {
return 42;
}
doubleArgument (x) {
return 2 * x;
}
throwException () {
throw new Error('This is a test exception thrown by DispatchTest');
}
}
module.exports = DispatchTestService;