Skip to content

Commit

Permalink
Speed up tests (remove one)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Schmitt committed Aug 23, 2023
1 parent 1273456 commit 8814360
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/podspec-dependency-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
- name: Set up CocoaPods
run: |
sudo gem install cocoapods
pod repo update
- name: Run snapshot action
uses: actions/go-dependency-submission@v1
Expand Down
9 changes: 1 addition & 8 deletions src/pod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { processPodspec, processPod } from './pod'
import { processPodspec } from './pod'

jest.setTimeout(20000)

Expand All @@ -8,10 +8,3 @@ describe('processPodspec', () => {
expect(podspec.name).toEqual('apptentive-fake-plugin')
})
})

describe('processPod', () => {
it("parses a pod's info", async () => {
const podspec = await processPod('ApptentiveKit')
expect(podspec.name).toEqual('ApptentiveKit')
})
})

0 comments on commit 8814360

Please sign in to comment.