import React from "react";
import { render, screen } from "@testing-library/react";
import { Social } from "@/components/auth/Social";
import { describe, it, expect } from "vitest";

describe("Social Component", () => {
  it("should render the Google login button with the correct aria-label", () => {
    render(<Social />);
    const googleButton = screen.getByLabelText("Login with Google");
    expect(googleButton).toBeInTheDocument();
  });
});
