Skip to content

Commit

Permalink
Reverse order of test and unit_test
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Mar 1, 2024
1 parent a000716 commit ad81775
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/index.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const templates = {
source: require('./docs/source.html'),
snapshot: require('./docs/snapshot.html'),
seed: require('./docs/seed.html'),
test: require('./docs/test.html'),
unit_test: require('./docs/unit_test.html'),
test: require('./docs/test.html'),
analysis: require('./docs/analysis.html'),
macro: require('./docs/macro.html'),
exposure: require('./docs/exposure.html'),
Expand Down Expand Up @@ -79,16 +79,16 @@ angular
unique_id: {type: 'string'}
},
})
.state('dbt.test', {
url: 'test/:unique_id?section&' + graph_params,
.state('dbt.unit_test', {
url: 'unit_test/:unique_id?section&' + graph_params,
controller: 'TestCtrl',
templateUrl: templates.test,
params: {
unique_id: {type: 'string'}
},
})
.state('dbt.unit_test', {
url: 'unit_test/:unique_id?section&' + graph_params,
.state('dbt.test', {
url: 'test/:unique_id?section&' + graph_params,
controller: 'TestCtrl',
templateUrl: templates.test,
params: {
Expand Down

0 comments on commit ad81775

Please sign in to comment.