Skip to content

Commit d6d350d

Browse files
committed
fix: skip entry-databinding test on legacy backend (crashes Android SDK)
1 parent 947544a commit d6d350d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

example/__tests__/entry-databinding.harness.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ function waitForInputOnEntry(
108108

109109
describe('Entry transition uses user VM values (issue #282)', () => {
110110
it('inputOnEntry reflects user-set input value, not the default', async () => {
111+
// Legacy Android SDK crashes on stateMachineNamed() with this .riv file
112+
if (RiveFileFactory.getBackend() !== 'experimental') {
113+
return;
114+
}
111115
const file = await loadFile();
112116
const vm = file.defaultArtboardViewModel();
113117
expectDefined(vm);

0 commit comments

Comments
 (0)