# Test Mode
Before you begin
You need to have the working Storyly integration as described in Quick Start
This guide shows how to show test groups created in Storyly Dashboard to the specific devices. The default value of storylyTestMode
is false, you need to explicitly define to set test devices.
Container(
height: 120,
child: StorylyView(
onStorylyViewCreated: onStorylyViewCreated,
androidParam: StorylyParam()
..storylyId = STORYLY_INSTANCE_TOKEN
..storylyTestMode = true,
iosParam: StorylyParam()
..storylyId = STORYLY_INSTANCE_TOKEN
..storylyTestMode = true,
),
)