vylbot-app/tests/helpers/StringTools.test.ts
Ethan Lane 69ef94dbb5
All checks were successful
continuous-integration/drone/push Build is passing
Add placeholder tests
2024-02-03 19:29:28 +00:00

15 lines
390 B
TypeScript

describe('Capitalise', () => {
test.todo('EXPECT sentence to be capitalised');
});
describe('CapitaliseArray', () => {
test.todo("EXPECT words in array to be capitalised");
});
describe("RandomString", () => {
test.todo("EXPECT random string of length to be returned");
});
describe("ReplaceAll", () => {
test.todo("EXPECT all instances of substring to be replaced");
});