Add test in compliments module for remotFile option (#2932)

nothing fancy here, just a simple test after @khassel's changes to the
test setup :-)

Co-authored-by: veeck <michael@veeck.de>
This commit is contained in:
Veeck
2022-10-04 14:26:31 +02:00
committed by GitHub
parent 8212d30c4c
commit ce4906d13b
4 changed files with 37 additions and 0 deletions

View File

@@ -85,4 +85,15 @@ describe("Compliments module", () => {
});
});
});
describe("remoteFile option", () => {
beforeAll(async () => {
helpers.startApplication("tests/configs/modules/compliments/compliments_remote.js");
await helpers.getDocument();
});
it("should show compliments from a remote file", async () => {
await doTest(["Remote compliment file works!"]);
});
});
});