aboutsummaryrefslogtreecommitdiff
path: root/test/content/mock/MockURLRepository.ts
blob: 731a7fb7c6e3aa6e18fa636607178e38976b6762 (plain) (blame)
1
2
3
4
5
6
7
8
9
import URLRepository from "../../../src/content/operators/impls/URLRepository";

export default class MockURLRepository implements URLRepository {
  constructor(private url: string = "https://example.com/") {}

  getCurrentURL(): string {
    return this.url;
  }
}