Skip to content

Commit

Permalink
Updated tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ebiwonjumit committed Aug 7, 2024
1 parent cabe1ed commit aebece7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ const utils = require("../assets/utils");

describe(utils.suiteName(__filename), function () {
const MockService = require("../assets/mock-service");
const MusicApp = utils.reqSrc(
const BeatBlox = utils.reqSrc(
"procedures/music-app/music-app",
);
const assert = require("assert");
let service, testSuite;

utils.verifyRPCInterfaces("MusicApp", [
utils.verifyRPCInterfaces("BeatBlox", [
["getSoundNames", ["chords", "key", "bpm", "instrumentName"]],
["nameToSound", ["nameOfSound"]],
["getDrumOneShotNames", ["packName", "drumType"]],
Expand All @@ -18,7 +18,7 @@ describe(utils.suiteName(__filename), function () {

before(async () => {
testSuite = await utils.TestSuiteBuilder().setup();
service = new MockService(MusicApp);
service = new MockService(BeatBlox);
});
after(() => {
testSuite.takedown();
Expand Down

0 comments on commit aebece7

Please sign in to comment.