faustinoaq changed the topic of #amber to: Welcome to Amber Framework community! | https://amberframework.org | Developer happiness, productivity and bare metal performance | GH: https://github.com/amberframework | Docs: https://docs.amberframework.org | Gitter: https://gitter.im/amberframework/amber | IRC Logger: https://irclog.whitequark.org/amber | Amber::Server.start
_whitelogger has joined #amber
feepbot has quit [Ping timeout: 245 seconds]
feepbot has joined #amber
<FromGitter> <eliasjpr> Sam the Garnet library recently changed please refer to the garnet repo Readme
<FromGitter> <eliasjpr> We have not updated the amber generator for system test to conform to the new changes
<FromGitter> <samholst> @eliasjpr thank you for letting me know! Did any of the DSL change? I'm getting `undefined method 'click_on'` in the system test.
<FromGitter> <samholst> For example, I have 11 `element...text.should contain...` and when the test runs, the output is the following ⏎ ⏎ ```Finished in 503.91 milliseconds ⏎ 0 examples, 0 failures, 0 errors, 0 pending``` [https://gitter.im/amberframework/amber?at=5d37461ad61887416424c1c4]
<FromGitter> <samholst> That's on linux, and on mac when doing a shards install it does pass for some reason ⏎ ⏎ ```code paste, see link``` [https://gitter.im/amberframework/amber?at=5d374b458285d81daa4835d3]
<FromGitter> <balugitlab_gitlab> Hi there would anyone mind pointing me in the right direction for a "Error: 500 | (ERROR) DB::ConnectionRefused lib/pg/src/pg/connection.cr:16:9 in 'initialize' ⏎ " Error i get when i try to run he dockerversion?
<FromGitter> <drujensen> @balugitlab_gitlab sure. There is an environment variable being set in the `docker-compose.yml` file that is not being used in the `config/environnments/development.yml` file
<FromGitter> <drujensen> `DATABASE_URL`
<FromGitter> <drujensen> couple options here. In the `config/database.cr`, you can replace the url with `url: ENV["DATABASE_URL”]`
<FromGitter> <drujensen> or in the `config/environments/development.yml`, you can set the url there
<FromGitter> <drujensen> hope this helps
<FromGitter> <balugitlab_gitlab> @drujensen thanks fixed it
<FromGitter> <eliasjpr> Sam sorry to hear. I’ll try to look at it. Can you share a gist?
<FromGitter> <eliasjpr> Sam are you inheriting your tests from GarnetSpec::SystemTest?