// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`spotifyIntegration.vue > renders proper content with Spotify integration status false, current user admin status false 1`] = `
<section>
  <h3 class="text-2xl mb-2"><span class="mr-2 text-[#1db954]"><br data-testid="Icon" icon="[object Object]"></span> Spotify Integration </h3>
  <div>
    <p> Spotify integration is not enabled.
      <!--v-if-->
    </p>
  </div>
</section>
`;

exports[`spotifyIntegration.vue > renders proper content with Spotify integration status false, current user admin status true 1`] = `
<section>
  <h3 class="text-2xl mb-2"><span class="mr-2 text-[#1db954]"><br data-testid="Icon" icon="[object Object]"></span> Spotify Integration </h3>
  <div>
    <p> Spotify integration is not enabled. <span data-testid="spotify-admin-instruction"> Check <a href="https://docs.koel.dev/service-integrations#spotify" target="_blank">Documentation</a> for integration instructions. </span></p>
  </div>
</section>
`;

exports[`spotifyIntegration.vue > renders proper content with Spotify integration status true, current user admin status false 1`] = `
<section>
  <h3 class="text-2xl mb-2"><span class="mr-2 text-[#1db954]"><br data-testid="Icon" icon="[object Object]"></span> Spotify Integration </h3>
  <div>
    <p> Spotify integration is enabled. Koel will attempt to retrieve album arts and artist images from Spotify when a song is played, if needed. </p>
  </div>
</section>
`;

exports[`spotifyIntegration.vue > renders proper content with Spotify integration status true, current user admin status true 1`] = `
<section>
  <h3 class="text-2xl mb-2"><span class="mr-2 text-[#1db954]"><br data-testid="Icon" icon="[object Object]"></span> Spotify Integration </h3>
  <div>
    <p> Spotify integration is enabled. Koel will attempt to retrieve album arts and artist images from Spotify when a song is played, if needed. </p>
  </div>
</section>
`;
