Skip to content

Commit d87eb83

Browse files
linting
1 parent 71eb0bc commit d87eb83

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

react_on_rails_pro/packages/node-renderer/src/worker/checkProtocolVersionHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function normalizeVersion(version: string): string {
3434
return normalized;
3535
}
3636

37-
interface RequestBody {
37+
export interface RequestBody {
3838
protocolVersion?: string;
3939
gemVersion?: string;
4040
railsEnv?: string;

react_on_rails_pro/packages/node-renderer/src/worker/requestPrechecks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* @module worker/requestPrechecks
44
*/
55
import type { ResponseResult } from '../shared/utils';
6-
import { checkProtocolVersion, type ProtocolVersionBody } from './checkProtocolVersionHandler';
6+
import { checkProtocolVersion, type RequestBody } from './checkProtocolVersionHandler';
77
import { authenticate, type AuthBody } from './authHandler';
88

9-
export interface RequestPrechecksBody extends ProtocolVersionBody, AuthBody {
9+
export interface RequestPrechecksBody extends RequestBody, AuthBody {
1010
[key: string]: unknown;
1111
}
1212

react_on_rails_pro/packages/node-renderer/tests/incrementalRender.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ describe('incremental render NDJSON endpoint', () => {
674674
});
675675

676676
describe('incremental render update chunk functionality', () => {
677-
test.only('basic incremental update - initial request gets value, update chunks set value', async () => {
677+
test('basic incremental update - initial request gets value, update chunks set value', async () => {
678678
await createVmBundle(TEST_NAME);
679679
const SERVER_BUNDLE_TIMESTAMP = String(BUNDLE_TIMESTAMP);
680680

0 commit comments

Comments
 (0)