test('Should return false if the \'ontour\' flag is \'1\'', () => {
      const artistInfo: any = {
        ontour: '1'
      };
      expect(provider.isArtistOnTour(artistInfo)).toBeTruthy();