<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>
<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?