mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
fixing minor problems on workflow
This commit is contained in:
parent
4c3bfe4eb5
commit
560f256a35
10
.github/workflows/fly.yml
vendored
10
.github/workflows/fly.yml
vendored
|
@ -100,6 +100,11 @@ jobs:
|
||||||
name: Python SDK Tests
|
name: Python SDK Tests
|
||||||
needs: pre-deploy-e2e-tests
|
needs: pre-deploy-e2e-tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: redis
|
||||||
|
ports:
|
||||||
|
- 6379:6379
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
|
@ -120,6 +125,11 @@ jobs:
|
||||||
name: JavaScript SDK Tests
|
name: JavaScript SDK Tests
|
||||||
needs: pre-deploy-e2e-tests
|
needs: pre-deploy-e2e-tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: redis
|
||||||
|
ports:
|
||||||
|
- 6379:6379
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
|
|
|
@ -5,7 +5,7 @@ import dotenv from 'dotenv';
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
|
|
||||||
const TEST_API_KEY = process.env.TEST_API_KEY;
|
const TEST_API_KEY = process.env.TEST_API_KEY;
|
||||||
const API_URL = process.env.API_URL;
|
const API_URL = "http://127.0.0.1:3002";
|
||||||
|
|
||||||
describe('FirecrawlApp E2E Tests', () => {
|
describe('FirecrawlApp E2E Tests', () => {
|
||||||
test.concurrent('should throw error for no API key', () => {
|
test.concurrent('should throw error for no API key', () => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user