fixed e2e tests
This commit is contained in:
parent
2c39103e93
commit
573868c4ad
|
@ -1,7 +1,9 @@
|
|||
node_modules
|
||||
dist/*
|
||||
e2e/dms/*/
|
||||
!e2e/dms/temp/
|
||||
!e2e/dms/c4c
|
||||
!e2e/dms/c81
|
||||
!e2e/dms/ecc
|
||||
npm-debug.log
|
||||
.eslintcache
|
||||
datasources.*.json
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
It works!
|
|
@ -0,0 +1 @@
|
|||
It works!
|
|
@ -0,0 +1 @@
|
|||
It works!
|
|
@ -25,9 +25,10 @@ export default class Controller {
|
|||
}
|
||||
|
||||
set postcodeSelection(selection) {
|
||||
const hasValue = this._postcodeSelection;
|
||||
this._postcodeSelection = selection;
|
||||
|
||||
if (!selection) return;
|
||||
if (!selection || !hasValue) return;
|
||||
|
||||
const town = selection.town;
|
||||
const province = town.province;
|
||||
|
|
Loading…
Reference in New Issue