-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actualizo dependencias. Añado encabezados en HTML
- Loading branch information
1 parent
1b8216e
commit c60d86d
Showing
13 changed files
with
2,922 additions
and
4,365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { defineConfig } from 'cypress' | ||
|
||
export default defineConfig({ | ||
fixturesFolder: false, | ||
video: false, | ||
screenshotOnRunFailure: false, | ||
e2e: { | ||
setupNodeEvents(on, config) {}, | ||
specPattern: 'test/**/*.cy.{js,jsx,ts,tsx}', | ||
supportFile: false, | ||
}, | ||
}) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,53 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="es"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title> | ||
<!-- TODO --> | ||
Gestor de Presupuesto - Pon aquí tu nombre y apellidos | ||
</title> | ||
</head> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title> | ||
<!-- TODO --> Gestor de Presupuesto - Pon aquí tu nombre y apellidos | ||
</title> | ||
</head> | ||
|
||
<body> | ||
<div id="aplicacion"> | ||
<div id="presupuesto"> | ||
</div> | ||
<body> | ||
<div id="aplicacion"> | ||
<h2>Totales</h2> | ||
<div id="presupuesto"></div> | ||
|
||
<div id="gastos-totales"> | ||
</div> | ||
<div id="gastos-totales"></div> | ||
|
||
<div id="balance-total"> | ||
</div> | ||
<div id="balance-total"></div> | ||
|
||
<div id="listado-gastos-completo"> | ||
</div> | ||
<h2>Listado de gastos completo</h2> | ||
<div id="listado-gastos-completo"></div> | ||
|
||
<div id="listado-gastos-filtrado-1"> | ||
</div> | ||
<h2>Listado de gastos filtrados - 1</h2> | ||
<div id="listado-gastos-filtrado-1"></div> | ||
|
||
<div id="listado-gastos-filtrado-2"> | ||
</div> | ||
<h2>Listado de gastos filtrados - 2</h2> | ||
<div id="listado-gastos-filtrado-2"></div> | ||
|
||
<div id="listado-gastos-filtrado-3"> | ||
</div> | ||
<h2>Listado de gastos filtrados - 3</h2> | ||
<div id="listado-gastos-filtrado-3"></div> | ||
|
||
<div id="listado-gastos-filtrado-4"> | ||
</div> | ||
<h2>Listado de gastos filtrados - 4</h2> | ||
<div id="listado-gastos-filtrado-4"></div> | ||
|
||
<div id="agrupacion-dia"> | ||
</div> | ||
<h2>Gastos agrupados por día</h2> | ||
<div id="agrupacion-dia"></div> | ||
|
||
<div id="agrupacion-mes"> | ||
</div> | ||
<h2>Gastos agrupados por mes</h2> | ||
<div id="agrupacion-mes"></div> | ||
|
||
<div id="agrupacion-anyo"> | ||
</div> | ||
<h2>Gastos agrupados por año</h2> | ||
<div id="agrupacion-anyo"></div> | ||
</div> | ||
|
||
</div> | ||
|
||
<!-- | ||
<!-- | ||
TODO: Cargar el script js/generarDatosEstaticos.js | ||
Cargar script al final para que se haya cargado todo el HTML previo. | ||
El script se debe cargar con el atributo type="module" porque vamos a utilizar "import" | ||
https://es.javascript.info/modules-intro#que-es-un-modulo | ||
--> | ||
|
||
</body> | ||
</body> | ||
</html> |
Oops, something went wrong.