Skip to content

Commit ba5e9d3

Browse files
committed
Fix review comments
Signed-off-by: Shubham Sharma <[email protected]>
1 parent 26e1044 commit ba5e9d3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

examples/configuration/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { DaprClient } from "dapr-client";
22

33
const daprHost = "127.0.0.1";
4-
const daprPortDefault = "30000";
4+
const daprPortDefault = "3500";
55

66
async function start() {
77

test/unit/actor/actorRuntime.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,12 @@ describe('ActorRuntime', () => {
114114
});
115115

116116
it('should be able to fire a reminder', async () => {
117+
// TODO: add this test
117118
new ActorId(uuidv4());
118119
});
119120

120121
it('should be able to fire a timer', async () => {
122+
// TODO: add this test
121123
new ActorId(uuidv4());
122124
});
123125
})

0 commit comments

Comments
 (0)