xref: /expo/packages/@expo/cli/__mocks__/progress.ts (revision bb5069cd)
1class Progress {
2  tick: Function;
3  terminate: Function;
4  constructor() {
5    this.tick = jest.fn();
6    this.terminate = jest.fn();
7  }
8}
9
10export default Progress;
11