Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f43213e
added modal and logic for insuring a handle has been set before conti…
science-girl May 10, 2018
e7cd789
added styles to modal box
science-girl May 10, 2018
ad16070
added re-setting name functionality
science-girl May 15, 2018
2d9060a
name field populated from redux store upon profile load
science-girl May 15, 2018
24ad8db
Merge branch 'develop' into bug-setHandleModalBox
science-girl May 15, 2018
5b65800
removed unused vars
science-girl May 16, 2018
debc55d
fix docker tests for holochain latest
Connoropolous May 16, 2018
cc1a8d8
also fix test flags in .travis.yml
Connoropolous May 17, 2018
1bbb710
incorporated backend error handling and visibility toggling from code…
science-girl May 17, 2018
2700d60
changed visibility toggling back because the whole panel disappeared
science-girl May 17, 2018
eaceb93
added check if first name has not been changed then dont update
science-girl May 17, 2018
c545588
Merge branch 'bug-setHandleModalBox' of https://github.com/Holochain/…
science-girl May 17, 2018
c63020c
deleted BasedOn in DNA
science-girl May 18, 2018
c0e847a
removed semi-colons
science-girl May 18, 2018
cd3ab69
debugging firstName on refresh
science-girl May 18, 2018
bba5228
fixed firstName not displaying bug
Connoropolous May 18, 2018
912e030
fixed more bugs related to firstName
science-girl May 18, 2018
2f72e98
delete hash and link when updating firstName to prevent errors if sam…
science-girl May 19, 2018
9c86c05
changed ui-automation tests to test new functionality
science-girl May 21, 2018
d4b880b
edited ui automation tests to account for changes with modal box
science-girl May 22, 2018
3791cbe
removed semi-colons
science-girl May 22, 2018
e581f66
removed H from post.json test 10
science-girl May 22, 2018
cbc7ee8
removed H ref from posts
science-girl May 22, 2018
6376e26
testing tests by commenting out offending part of ui-test
science-girl May 22, 2018
30320ab
testing tests by commenting out offending part of ui-test
science-girl May 22, 2018
90cf705
testing tests by hard-coding hash for test 10
science-girl May 22, 2018
fc8ea83
added max length check for handle
science-girl May 22, 2018
6ffa32e
errant console log statement
science-girl May 22, 2018
09c3f00
fixed merge conflict
science-girl May 22, 2018
a749f72
fixed merge conflict
science-girl May 22, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ before_install:
- sudo mv docker-compose /usr/local/bin
- TARGETDIR=$(pwd) docker-compose up -d
script:
- docker run --rm -v "$(pwd):/clutter" holochain/holochain-proto:develop bash -c "cd /clutter; hcdev -no-nat-upnp -mdns=true test"
- docker run --rm -v "$(pwd):/clutter" holochain/holochain-proto:develop bash -c "cd /clutter; hcdev -no-nat-upnp -mdns=true scenario collisionOfHandles"
- docker run --rm -v "$(pwd):/clutter" holochain/holochain-proto:develop bash -c "cd /clutter; hcdev -no-nat-upnp -mdns=true scenario followAndShare"
- docker run --rm -v "$(pwd):/clutter" holochain/holochain-proto:develop bash -c "cd /clutter; hcdev test"
- docker run --rm -v "$(pwd):/clutter" holochain/holochain-proto:develop bash -c "cd /clutter; hcdev scenario collisionOfHandles"
- docker run --rm -v "$(pwd):/clutter" holochain/holochain-proto:develop bash -c "cd /clutter; hcdev scenario followAndShare"
- cd ui-automation
- npm install
- npm test
Expand Down
Loading