pull/508/head
hunterlong 2020-04-17 00:29:54 -07:00
parent b3a7684d64
commit 5e2cda5e29
2 changed files with 3 additions and 3 deletions

View File

@ -24,10 +24,10 @@ jobs:
with:
node-version: '10.x'
- name: Install Dependencies
- name: Install Global Dependencies
run: npm install -g yarn sass newman cross-env wait-on @sentry/cli
- name: Checkout Statping
- name: Checkout Statping Repo
uses: actions/checkout@v2
- uses: actions/cache@v1

View File

@ -202,5 +202,5 @@ func TestConfigLoad(t *testing.T) {
assert.Equal(t, "sqlite", s("DB_CONN"))
assert.Equal(t, Directory, s("STATPING_DIR"))
assert.True(t, b("SAMPLE_DATA"))
assert.False(t, b("ALLOW_REPORTS"))
assert.True(t, b("ALLOW_REPORTS"))
}