fix(utils/testing): add missing trace() API logger in testbed

This commit is contained in:
Pascal Precht 2020-02-17 12:18:27 +01:00 committed by Iuri Matias
parent c54cc77e01
commit 0ba8d86ea7
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ class Embark {
debug: sinon.fake(),
info: sinon.fake(),
warn: sinon.fake(),
error: sinon.fake()
error: sinon.fake(),
trace: sinon.fake()
};
}