This is a simple calculator built with plain JavaScript using Test Driven Development (TDD).
- Clone this repository.
- Run
npm install
to install the dependencies.
- Run
npm run dev
to start the development server. - Open your browser and visit
http://localhost:8080
to see the calculator.
- Run
npm run build
to build the application in production mode.
Run npm run test:unit
to run the logic tests with Cucumber.js.
Run npm run test:ui
to run the interface tests with Cucumber.js. They should only be run if the development server is running.
Esta es una simple calculadora construida con JavaScript plano usando Desarrollo guiado por pruebas.
- Clona este repositorio.
- Ejecuta
npm install
para instalar las dependencias.
- Ejecuta
npm run dev
para iniciar el servidor de desarrollo. - Abre tu navegador y visita
http://localhost:8080
para ver la calculadora.
- Ejecuta
npm run build
para construir la aplicación en modo de producción.
Ejecuta npm run test:unit
para ejecutar las pruebas de la lógica con Cucumber.js.
Ejecuta npm run test:ui
para ejecutar las pruebas de la interface con Cucumber.js. Sólo se deben ejecutar si el servidor de desarrollo está corriendo.