Skip to content

Commit

Permalink
Actualizo dependencias. Añado encabezados en HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroprieto committed Sep 27, 2024
1 parent 1b8216e commit c60d86d
Show file tree
Hide file tree
Showing 13 changed files with 2,922 additions and 4,365 deletions.
12 changes: 12 additions & 0 deletions cypress.config.js
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,
},
})
8 changes: 0 additions & 8 deletions cypress.json

This file was deleted.

71 changes: 33 additions & 38 deletions interaccionHTML.html
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>
Loading

0 comments on commit c60d86d

Please sign in to comment.