Fix kernel test to not depend on body field
The LupusDecoupledMenuRequestTest was extending LupusCeRendererKernelTestBase which uses node_add_body_field() - a function deprecated in Drupal 11.3. Since the body field storage is no longer provided by default, this caused "Attempt to create a field without a field_name" errors.
The menu test doesn't actually need any node/body functionality, so this change makes it extend KernelTestBase directly with only the modules needed for menu testing.
Closes #3568705