Skip to content

Commit 503fca6

Browse files
fix: correct expected stage value in ShareRuntimeModule test
1 parent 16265b2 commit 503fca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/enhanced/test/unit/sharing/ShareRuntimeModule.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('ShareRuntimeModule', () => {
6060
it('should initialize with the correct name and stage', () => {
6161
const runtimeModule = new ShareRuntimeModule();
6262
expect(runtimeModule.name).toBe('sharing');
63-
expect(runtimeModule.stage).toBe(7);
63+
expect(runtimeModule.stage).toBe(7); // RuntimeModule.STAGE_NORMAL (5) + 2
6464
});
6565
});
6666

0 commit comments

Comments
 (0)