run()

in src/gatherers/fake.js [27:40]


  run(source, options) {
    return {
      status: Status.RETRIEVED,
      statusText: 'Success',
      metadata: {},
      url: source.fake.url,
      data: {
        name: 'test',
        address: 'test-address',
        phone: 'phone',
      },
      errors: [],
    }
  }