mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fixes #3730. Testing Done: Manual testing based on the report in #3730. Also confirmed that `</script>` is not a problem. I would have added a test-packages test but there's no easy way to override Meteor.settings in test-packages. Bugs closed: 3730 Reviewed at https://rbcommons.com/s/meteor/r/1/
6 lines
228 B
JavaScript
6 lines
228 B
JavaScript
// Regression test for #3730
|
|
Tinytest.add("webapp - runtime config", function (test) {
|
|
test.equal(__meteor_runtime_config__.WEBAPP_TEST_A, '<p>foo</p>');
|
|
test.equal(__meteor_runtime_config__.WEBAPP_TEST_B, '</script>');
|
|
});
|