Fix the tests
Signed-off-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
parent
f0000f7400
commit
10519f9465
3 changed files with 18 additions and 13 deletions
|
@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
|
|||
limitations under the License.
|
||||
*/
|
||||
|
||||
import Promise from "bluebird";
|
||||
import SettingsHandler from "./SettingsHandler";
|
||||
|
||||
/**
|
||||
|
@ -51,7 +52,8 @@ export default class LocalEchoWrapper extends SettingsHandler {
|
|||
const cacheRoomId = roomId ? roomId : "UNDEFINED"; // avoid weird keys
|
||||
bySetting[cacheRoomId] = newValue;
|
||||
|
||||
return this._handler.setValue(settingName, roomId, newValue).finally(() => {
|
||||
const handlerPromise = this._handler.setValue(settingName, roomId, newValue);
|
||||
return Promise.resolve(handlerPromise).finally(() => {
|
||||
delete bySetting[cacheRoomId];
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue