When resetHelpers was being called it was removing helpers and causing tests to fail due to the tests running in a different order once a failure had happened.
Changes
for and let are now created as part of builtInHelper as they were being removed when __resetHelpers was run and was causing lot's of failures when the order
I also moved most of helpers/converters into core, so that it can be created in the same way as helpers. So that when __resetHelpers is run throughout tests all the helper and converters are added correctly and won't cause tests to fail due to missing helpers.
When resetHelpers was being called it was removing helpers and causing tests to fail due to the tests running in a different order once a failure had happened.
Changes
for
andlet
are now created as part ofbuiltInHelper
as they were being removed when__resetHelpers
was run and was causing lot's of failures when the orderI also moved most of
helpers/converters
intocore
, so that it can be created in the same way as helpers. So that when__resetHelpers
is run throughout tests all thehelper
andconverters
are added correctly and won't cause tests to fail due to missinghelpers
.