()
| 10 | const DEFAULT_SCRIPT_NAME = 'testScript' |
| 11 | |
| 12 | function createStore() { |
| 13 | return new Vuex.Store({ |
| 14 | modules: { |
| 15 | scriptConfig: scriptConfig(), |
| 16 | scripts: { |
| 17 | namespaced: true, |
| 18 | state: { |
| 19 | selectedScript: DEFAULT_SCRIPT_NAME |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | }); |
| 24 | } |
| 25 | |
| 26 | const DEFAULT_PARAM2_VALUES = ['abc', 'def', 'xyz']; |
| 27 |