-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
78 lines (64 loc) · 1.93 KB
/
.gitignore
File metadata and controls
78 lines (64 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
###############################################################################
# ➜ JAVA + MAVEN
###############################################################################
# Salida de compilación
target/
# Informes de pruebas (TestNG, Surefire/Failsafe)
surefire-reports/
failsafe-reports/
test-output/
*.log
# Maven Wrapper (❗ sí conviene versionar el wrapper)
.mvn/wrapper/maven-wrapper.jar # INCLUIR
!/.mvn/wrapper/maven-wrapper.jar # Niega la regla anterior para asegurarlo
.mvn/wrapper/maven-wrapper.properties
mvnw
mvnw.cmd
###############################################################################
# ➜ IDEs
###############################################################################
# Eclipse
.project
.classpath
.settings/
bin/
.factorypath
# IntelliJ IDEA
.idea/
*.iws
*.iml
*.ipr
out/
# VS Code
.vscode/
###############################################################################
# ➜ WebDriverManager (si lo configuras para descargar en el proyecto)
# Por defecto usa tu carpeta de usuario, pero a veces se cambia la ruta.
###############################################################################
.wdm/
.webdrivers/
drivers/
###############################################################################
# ➜ Archivos temporales del SO / editores
###############################################################################
# Windows
Thumbs.db
desktop.ini
# macOS
.DS_Store
# Linux
*~
# Archivos swap / backups de editores (Vim, VS Code, etc.)
*.swp
*.swo
*.bak
*.tmp
###############################################################################
# ➜ REPORTES (ExtentReports 5)
###############################################################################
# Carpeta base de los reportes
reports/
# Si por alguna razón generas los HTML en otra carpeta, añade el patrón:
# **/AutomationReport_*.html
# Capturas automáticas (por defecto en reports/screenshots/)
reports/screenshots/