Skip to content

Commit

Permalink
TEST_API_URL の間違い
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Dec 25, 2024
1 parent 55702bc commit 51f78b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/data_channel_signaling_only/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

<head>
<meta charset="utf-8">
<title>Sendonly test</title>
<title>DataChannelSignalingOnly test</title>
</head>

<body>
<div class="container">
<h1>Sendonly test</h1>
<h1>DataChannelSignalingOnly test</h1>
<h3 id="sdk-version"></h3>
<button id="connect">connect</button>
<button id="disconnect">disconnect</button>
Expand Down
4 changes: 2 additions & 2 deletions e2e-tests/data_channel_signaling_only/main.mts
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ class SoraClient {

// E2E テスト側で実行した方が良い気がする
async apiDisconnect(): Promise<void> {
const apiUrl = import.meta.env.VITE_SORA_API_URL
const apiUrl = import.meta.env.VITE_TEST_API_URL
if (apiUrl === '') {
console.error('VITE_SORA_API_URL is not set')
console.error('VITE_TEST_API_URL is not set')
}
const response = await fetch(apiUrl, {
method: 'POST',
Expand Down

0 comments on commit 51f78b4

Please sign in to comment.