fix typos

This commit is contained in:
Phillip Thelen
2024-05-08 17:46:40 +02:00
parent a9cefd284a
commit fce5371fce
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import { getRepeatingEvents } from '../../website/common/script/content/constants/events'; import { getRepeatingEvents } from '../../website/common/script/content/constants/events';
describe.only('events', () => { describe('events', () => {
let clock; let clock;
afterEach(() => { afterEach(() => {

View File

@@ -25,7 +25,7 @@ describe('food', () => {
} else { } else {
expectValidTranslationString(foodItem.textA); expectValidTranslationString(foodItem.textA);
expectValidTranslationString(foodItem.textThe); expectValidTranslationString(foodItem.textThe);
expectValidTranslationString(foodItem.target); expect(foodItem.target).to.be.a('string');
} }
expectValidTranslationString(foodItem.text); expectValidTranslationString(foodItem.text);
expectValidTranslationString(foodItem.notes); expectValidTranslationString(foodItem.notes);

View File

@@ -19,7 +19,7 @@ function validateMatcher (matcher, checkedDate) {
expect(matcher.end).to.be.greaterThan(checkedDate); expect(matcher.end).to.be.greaterThan(checkedDate);
} }
describe.only('Content Schedule', () => { describe('Content Schedule', () => {
beforeEach(() => { beforeEach(() => {
clearCachedMatchers(); clearCachedMatchers();
}); });