diff --git a/Makefile b/Makefile
index 22eb49bbc50bb5c0c3b30454434870392c0f9471..f6515cdea6281a58ade38c795ff9e55b416c1dea 100644
--- a/Makefile
+++ b/Makefile
@@ -7,3 +7,4 @@ build:
 
 test:
 	go test ./...
+	npm test
diff --git a/src/App.test.js b/src/App.test.js
index 352d7b8ff1a37f11945f7d0977a4570fcb2b7889..e7092dd171fc5479820486bf2288da426b872490 100644
--- a/src/App.test.js
+++ b/src/App.test.js
@@ -2,8 +2,8 @@ import React from "react";
 import { render } from "@testing-library/react";
 import App from "./App";
 
-test("renders learn react link", () => {
+test("renders sign in", () => {
   const { getByText } = render(<App />);
-  const linkElement = getByText(/learn react/i);
+  const linkElement = getByText(/Nombre de acceso/i);
   expect(linkElement).toBeInTheDocument();
 });