Updated file paths

This commit is contained in:
thatblindgeye
2023-02-01 18:53:54 -05:00
parent a092bf0559
commit 2ec0f4344d
24 changed files with 207 additions and 204 deletions
@@ -1,18 +1,18 @@
const reverseString = require("./reverseString");
const reverseString = require('./reverseString-solution');
describe("reverseString", () => {
test("reverses single word", () => {
expect(reverseString("hello")).toEqual("olleh");
describe('reverseString', () => {
test('reverses single word', () => {
expect(reverseString('hello')).toEqual('olleh');
});
test.skip("reverses multiple words", () => {
expect(reverseString("hello there")).toEqual("ereht olleh");
test.skip('reverses multiple words', () => {
expect(reverseString('hello there')).toEqual('ereht olleh');
});
test.skip("works with numbers and punctuation", () => {
expect(reverseString("123! abc!")).toEqual("!cba !321");
test.skip('works with numbers and punctuation', () => {
expect(reverseString('123! abc!')).toEqual('!cba !321');
});
test.skip("works with blank strings", () => {
expect(reverseString("")).toEqual("");
test.skip('works with blank strings', () => {
expect(reverseString('')).toEqual('');
});
});