Skip to content

Commit f1dc0a7

Browse files
committed
remove integration tests for now
1 parent 16aaa21 commit f1dc0a7

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,16 @@ jobs:
3535
uses: actions/setup-node@v4
3636
with:
3737
node-version: ${{ matrix.node }}
38+
3839
- name: Set up Supabase CLI
3940
uses: supabase/setup-cli@v1
4041
with:
4142
version: latest
4243

43-
- name: Start Supabase
44-
run: supabase start
4544
- name: Run tests
4645
run: |
4746
npm clean-install
4847
npm run test:coverage
49-
- name: Run integration tests
50-
timeout-minutes: 2
51-
run: npm run test:integration
5248
5349
- name: Upload coverage results to Coveralls
5450
uses: coverallsapp/github-action@master

test/integration.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,8 @@ describe('Supabase Integration Tests', () => {
106106

107107
channel
108108
.on('broadcast', { event: '*' }, (payload) => (receivedMessage = payload))
109-
.subscribe((status, error) => {
109+
.subscribe((status) => {
110110
if (status == 'SUBSCRIBED') subscribed = true
111-
console.log('Channel status:', { status, error })
112111
})
113112

114113
// Wait for subscription

0 commit comments

Comments
 (0)