Skip to content

Commit

Permalink
Update to ignore js files in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
eablack committed Apr 29, 2024
1 parent ceaeb7d commit 1fe3961
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ node_modules
tmp
dst
packages/ci/src/interfaces/kolkrabbi.ts
packages/oauth-v5/test
packages/certs-v5/test
packages/pg-v5/test
packages/run-v5/test
packages/spaces/test
packages/oauth-v5/test/
packages/certs-v5/test/
packages/pg-v5/test/
packages/run-v5/test/
packages/spaces/test/
10 changes: 8 additions & 2 deletions packages/cli/test/unit/commands/spaces/info.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@ import * as nock from 'nock'
import heredoc from 'tsheredoc'
import expectOutput from '../../../helpers/utils/expectOutput'
import * as fixtures from '../../../fixtures/spaces/fixtures'
import * as Heroku from '@heroku-cli/schema'

describe('spaces:info', function () {
const space = fixtures.spaces['non-shield-space']
const shieldSpace = fixtures.spaces['shield-space']
let space: Required<Heroku.Space>
let shieldSpace: Required<Heroku.Space>

beforeEach(function () {
space = fixtures.spaces['non-shield-space']
shieldSpace = fixtures.spaces['shield-space']
})

it('shows space info', async function () {
nock('https://api.heroku.com', {reqheaders: {'Accept-Expansion': 'region'}})
Expand Down

0 comments on commit 1fe3961

Please sign in to comment.