Skip to content

Commit 06d585d

Browse files
committed
prepare next dev iteration
1 parent 12886e7 commit 06d585d

File tree

6 files changed

+65
-27
lines changed

6 files changed

+65
-27
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,8 @@ hs_err_pid*
3232
target/
3333

3434
# testng
35-
test-output/
35+
test-output/
36+
37+
# Intellij
38+
.idea/
39+
*.iml

pom-nexus.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.aventstack</groupId>
77
<artifactId>extentreports-testng-adapter</artifactId>
8-
<version>1.0.7</version>
8+
<version>1.0.8-SNAPSHOT</version>
99
<name>extentreports-testng-adapter</name>
1010
<url>http://extentreports.com</url>
1111
<description>TestNG adapter for Extent Framework</description>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.aventstack</groupId>
77
<artifactId>extentreports-testng-adapter</artifactId>
8-
<version>1.0.7</version>
8+
<version>1.0.8-SNAPSHOT</version>
99
<name>extentreports-testng-adapter</name>
1010
<url>http://extentreports.com</url>
1111
<description>TestNG adapter for Extent Framework</description>

src/test/resources/com/aventstack/adapter/extent.properties

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ extent.reporter.avent.start=false
22
extent.reporter.bdd.start=false
33
extent.reporter.cards.start=false
44
extent.reporter.email.start=false
5-
extent.reporter.html.start=true
5+
extent.reporter.html.start=false
6+
extent.reporter.spark.start=true
67
extent.reporter.klov.start=false
7-
extent.reporter.logger.start=false
88
extent.reporter.tabular.start=false
99

10-
extent.reporter.avent.config=src/test/resources/com/aventstack/adapter/avent-config.xml
11-
extent.reporter.bdd.config=src/test/resources/com/aventstack/adapter/bdd-config.xml
12-
extent.reporter.cards.config=src/test/resources/com/aventstack/adapter/cards-config.xml
10+
extent.reporter.avent.config=
11+
extent.reporter.bdd.config=
12+
extent.reporter.cards.config=
1313
extent.reporter.email.config=
14-
extent.reporter.html.config=src/test/resources/com/aventstack/adapter/html-config.xml
15-
extent.reporter.klov.config=src/test/resources/com/aventstack/adapter/klov.properties
16-
extent.reporter.logger.config=src/test/resources/com/aventstack/adapter/logger-config.xml
17-
extent.reporter.tabular.config=src/test/resources/com/aventstack/adapter/tabular-config.xml
14+
extent.reporter.html.config=
15+
extent.reporter.spark.config=
16+
extent.reporter.klov.config=
17+
extent.reporter.tabular.config=
1818

19-
extent.reporter.avent.out=test-output/AventReport/
20-
extent.reporter.bdd.out=test-output/BddReport/
21-
extent.reporter.cards.out=test-output/CardsReport/
22-
extent.reporter.email.out=test-output/EmailReport/ExtentEmail.html
23-
extent.reporter.html.out=test-output/HtmlReport/ExtentHtml.html
24-
extent.reporter.logger.out=test-output/LoggerReport/
25-
extent.reporter.tabular.out=test-output/TabularReport/
19+
extent.reporter.avent.out=test-output/ExtentAvent/
20+
extent.reporter.bdd.out=test-output/ExtentBDD/
21+
extent.reporter.cards.out=test-output/ExtentCards/
22+
extent.reporter.email.out=test-output/ExtentEmail/ExtentEmail.html
23+
extent.reporter.html.out=test-output/ExtentHtml/ExtentHtml.html
24+
extent.reporter.spark.out=test-output/ExtentSpark/Index.html
25+
extent.reporter.tabular.out=test-output/ExtentTabular/

src/test/resources/com/aventstack/adapter/html-config.xml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44
<!-- report theme -->
55
<!-- standard, dark -->
66
<theme>standard</theme>
7-
8-
<!-- viewstyle -->
9-
<!-- alt-view -->
10-
<viewstyle>alt-view</viewstyle>
11-
7+
128
<!-- document encoding -->
139
<!-- defaults to UTF-8 -->
1410
<encoding>UTF-8</encoding>
@@ -25,9 +21,6 @@
2521

2622
<!-- report name - displayed at top-nav -->
2723
<reportName>Automation Report</reportName>
28-
29-
<!-- create a report with all artifacts stored locally -->
30-
<enableOfflineMode>true</enableOfflineMode>
3124

3225
<!-- custom javascript -->
3326
<scripts>
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<extentreports>
3+
<configuration>
4+
<!-- report theme -->
5+
<!-- standard, dark -->
6+
<theme>standard</theme>
7+
8+
<!-- document encoding -->
9+
<!-- defaults to UTF-8 -->
10+
<encoding>UTF-8</encoding>
11+
12+
<!-- enable or disable timeline on dashboard -->
13+
<enableTimeline>true</enableTimeline>
14+
15+
<!-- protocol for script and stylesheets -->
16+
<!-- defaults to https -->
17+
<protocol>https</protocol>
18+
19+
<!-- title of the document -->
20+
<documentTitle>Extent</documentTitle>
21+
22+
<!-- report name - displayed at top-nav -->
23+
<reportName>Automation Report</reportName>
24+
25+
<!-- custom javascript -->
26+
<scripts>
27+
<![CDATA[
28+
$(document).ready(function() {
29+
30+
});
31+
]]>
32+
</scripts>
33+
34+
<!-- custom styles -->
35+
<styles>
36+
<![CDATA[
37+
38+
]]>
39+
</styles>
40+
</configuration>
41+
</extentreports>

0 commit comments

Comments
 (0)