diff --git a/test/content/armoire.js b/test/content/armoire.js new file mode 100644 index 0000000000..58fd5a4665 --- /dev/null +++ b/test/content/armoire.js @@ -0,0 +1,7 @@ +import armoire from '../../common/script/src/content/armoire'; + +describe('Armoire Locales', () => { + it('has a valid text attribute', () => { + expectValidTranslationString(armoire.text); + }); +}); diff --git a/test/content/health-potion.js b/test/content/health-potion.js new file mode 100644 index 0000000000..4bfb6e6365 --- /dev/null +++ b/test/content/health-potion.js @@ -0,0 +1,12 @@ +import healthPotion from '../../common/script/src/content/health-potion'; + +describe('Health Potion Locales', () => { + it('has a valid text attribute', () => { + expectValidTranslationString(healthPotion.text); + }); + + it('has a valid notes attribute', () => { + expectValidTranslationString(healthPotion.notes); + }); +}); +