-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add skeleton for testing multi-form-input feature
- Loading branch information
Showing
16 changed files
with
158 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
test/e2e/data_setup/config/recordedit/add-multi.config.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
test/e2e/data_setup/config/recordedit/multi-form-input.config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"catalog": {}, | ||
"schema": { | ||
"name": "multi-form-input", | ||
"createNew": true, | ||
"path": "test/e2e/data_setup/schema/recordedit/multi-form-input.json" | ||
}, | ||
"tables": { | ||
"createNew": true | ||
}, | ||
"entities": { | ||
"createNew": true, | ||
"path": "test/e2e/data_setup/data/multi-form-input" | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
test/e2e/data_setup/config/recordedit/multi-form-input.dev.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"setup": { | ||
"schemaConfigurations": [ | ||
"recordedit/multi-form-input.config.json" | ||
], | ||
"schema": "multi-form-input" | ||
}, | ||
"cleanup" : true | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
test/e2e/data_setup/schema/recordedit/multi-form-input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"schema_name": "multi-form-input", | ||
"tables": { | ||
"main": { | ||
"table_name": "main", | ||
"schema_name": "multi-form-input", | ||
"kind": "table", | ||
"keys": [{"unique_columns": ["id"]}], | ||
"column_definitions": [ | ||
{ | ||
"name": "id", | ||
"nullok": false, | ||
"type": { "typename": "serial4" } | ||
}, | ||
{ | ||
"name": "text_col", | ||
"nullok": true, | ||
"type": { | ||
"typename": "text" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
test/e2e/specs/default-config/recordedit/multi-form-input.conf.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
var pConfig = require('./../../../utils/protractor.configuration.js'); | ||
|
||
var config = pConfig.getConfig({ | ||
configFileName: 'recordedit/multi-form-input.dev.json', | ||
chaiseConfigFilePath: 'test/e2e/specs/default-config/chaise-config.js', | ||
specs: [ | ||
"multi-form-input.spec.js" | ||
], | ||
setBaseUrl: function(browser, data) { | ||
browser.params.url = process.env.CHAISE_BASE_URL; | ||
return browser.params.url; | ||
} | ||
}); | ||
|
||
exports.config = config; |
Oops, something went wrong.