mirror of
https://github.com/fluencelabs/fluid
synced 2025-06-21 09:01:32 +00:00
rename lots of things
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
import {handler} from "../main";
|
||||
|
||||
describe("example", () => {
|
||||
|
||||
it("can log some values to the console", () => {
|
||||
log<string>(handler('{"hi": "hi"}'));
|
||||
log<string>(handler('{"action": "Post", "msg": "Hello, Fluence!", "username": "fluencer"}'));
|
||||
log<string>(handler('{"action": "Post", "msg": "Hello, fluencer!", "username": "John Doe"}'));
|
||||
log<string>(handler('{"action": "Post", "msg": "How is it going?", "username": "fluencer"}'));
|
||||
log<string>(handler('{"action": "Post", "msg": "Excellent! Thanks!", "username": "John Doe"}'));
|
||||
log<string>(handler('{"action": "Fetch"}'));
|
||||
log<string>(handler('{"action": "Fetch", "filter_handle": "John Doe"}'));
|
||||
log<string>(handler('{"action": "Fetch", "filter_handle": "fluencer"}'));
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user