mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
18 lines
409 B
TypeScript
18 lines
409 B
TypeScript
|
import { capitalize } from "../strings"
|
||
|
|
||
|
describe("utils/strings", () => {
|
||
|
describe("capitalize", () => {
|
||
|
it("should capitalize the first letter of a string", () => {
|
||
|
// Arrange - Given
|
||
|
const string = "hello world"
|
||
|
|
||
|
// Act - When
|
||
|
const result = capitalize(string)
|
||
|
|
||
|
// Assert - Then
|
||
|
const expected = "Hello world"
|
||
|
expect(result).toEqual(expected)
|
||
|
})
|
||
|
})
|
||
|
})
|