Skip to content

Commit 7d3b8da

Browse files
committed
closes #2
1 parent 8619983 commit 7d3b8da

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

config/logger-config.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 Framework</documentTitle>
21+
22+
<!-- report name - displayed at top-nav -->
23+
<reportName>Build 1</reportName>
24+
25+
<!-- timestamp format -->
26+
<timeStampFormat>MMM dd, yyyy HH:mm:ss</timeStampFormat>
27+
28+
<!-- custom javascript -->
29+
<scripts>
30+
<![CDATA[
31+
$(document).ready(function() {
32+
33+
});
34+
]]>
35+
</scripts>
36+
37+
<!-- custom styles -->
38+
<styles>
39+
<![CDATA[
40+
41+
]]>
42+
</styles>
43+
</configuration>
44+
</extentreports>

config/v3html-config.xml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<extentreports>
3+
<configuration>
4+
5+
<!-- report theme -->
6+
<!-- standard, dark -->
7+
<theme>standard</theme>
8+
9+
<!-- document encoding -->
10+
<!-- defaults to UTF-8 -->
11+
<encoding>UTF-8</encoding>
12+
13+
<!-- protocol for script and stylesheets -->
14+
<!-- defaults to https -->
15+
<protocol>https</protocol>
16+
17+
<!-- title of the document -->
18+
<documentTitle>Extent Framework</documentTitle>
19+
20+
<!-- report name - displayed at top-nav -->
21+
<reportName>Build 1</reportName>
22+
23+
<!-- timestamp format -->
24+
<timeStampFormat>MMM dd, yyyy HH:mm:ss</timeStampFormat>
25+
26+
<!-- settings to enable/disable views -->
27+
<enableCategoryView>true</enableCategoryView>
28+
<enableAuthorView>false</enableAuthorView>
29+
<enableExceptionView>true</enableExceptionView>
30+
<enableTestRunnerLogsView>true</enableTestRunnerLogsView>
31+
32+
<!-- custom javascript -->
33+
<scripts>
34+
<![CDATA[
35+
$(document).ready(function() {
36+
37+
});
38+
]]>
39+
</scripts>
40+
41+
<!-- custom styles -->
42+
<styles>
43+
<![CDATA[
44+
45+
]]>
46+
</styles>
47+
48+
</configuration>
49+
</extentreports>

0 commit comments

Comments
 (0)