Merge pull request #614 from Osmose/clear-classify-cache

Clear client classification cache during mock-server test runs.
This commit is contained in:
Michael Kelly 2017-03-15 15:39:42 -07:00 коммит произвёл GitHub
Родитель 8d58dd67bb 96e6272705
Коммит 81329c76fd
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -38,6 +38,10 @@ this.ClientEnvironment = {
return yield _classifyRequest;
}),
clearClassifyCache() {
_classifyRequest = null;
},
/**
* Test wrapper that mocks the server request for classifying the client.
* @param {Object} data Fake server data to use

Просмотреть файл

@ -200,6 +200,7 @@ this.RecipeRunner = {
try {
Storage.clearAllStorage();
ClientEnvironment.clearClassifyCache();
NormandyApi.clearIndexCache();
yield this.start();
} finally {