Home
last modified time | relevance | path

Searched refs:progressSpy (Results 1 – 2 of 2) sorted by relevance

/development/tools/winscope/src/common/
Dfile_utils_test.ts55 const progressSpy = jasmine.createSpy(); constant
63 progressSpy,
66 expect(progressSpy).toHaveBeenCalledTimes(4);
67 expect(progressSpy).toHaveBeenCalledWith(0.25);
68 expect(progressSpy).toHaveBeenCalledWith(0.5);
69 expect(progressSpy).toHaveBeenCalledWith(0.75);
70 expect(progressSpy).toHaveBeenCalledWith(1);
/development/tools/winscope/src/app/
Dloaded_parsers_test.ts522 const progressSpy = jasmine.createSpy(); constant
523 await loadedParsers.makeZipArchive(progressSpy);
525 expect(progressSpy).toHaveBeenCalledTimes(5);
526 expect(progressSpy).toHaveBeenCalledWith(0);
527 expect(progressSpy).toHaveBeenCalledWith(0.25);
528 expect(progressSpy).toHaveBeenCalledWith(0.5);
529 expect(progressSpy).toHaveBeenCalledWith(0.75);
530 expect(progressSpy).toHaveBeenCalledWith(1);