Skip to content

Commit

Permalink
fix missed tabs (fixes #494, via #509)
Browse files Browse the repository at this point in the history
  • Loading branch information
baev authored Jul 27, 2017
1 parent ad5c90a commit 1b059bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions plugins/behaviors-plugin/src/dist/static/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ allure.api.addTab('behaviors', {
route: 'behaviors(/)(:testGroup)(/)(:testResult)(/)(:testResultTab)(/)',
onEnter: (function (testGroup, testResult, testResultTab) {
return new allure.components.TreeLayout({
testGroup,
testResult,
testResultTab,
testGroup: testGroup,
testResult: testResult,
testResultTab: testResultTab,
tabName: 'tab.behaviors.name',
baseUrl: 'behaviors',
url: 'data/behaviors.json'
Expand Down
6 changes: 3 additions & 3 deletions plugins/packages-plugin/src/dist/static/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ allure.api.addTab('packages', {
route: 'packages(/)(:testGroup)(/)(:testResult)(/)(:testResultTab)(/)',
onEnter: (function (testGroup, testResult, testResultTab) {
return new allure.components.TreeLayout({
testGroup,
testResult,
testResultTab,
testGroup: testGroup,
testResult: testResult,
testResultTab: testResultTab,
tabName: 'tab.packages.name',
baseUrl: 'packages',
url: 'data/packages.json'
Expand Down

0 comments on commit 1b059bb

Please sign in to comment.