Revert "Merge branch 'jest'"

This reverts commit f76e9e108f.
This commit is contained in:
Marvin Gay
2021-05-12 21:47:42 -04:00
parent f76e9e108f
commit ad1c0c407f
45 changed files with 217 additions and 6166 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
const snakeCase = function() {
};
}
module.exports = snakeCase;
module.exports = snakeCase
+17 -13
View File
@@ -1,22 +1,26 @@
const snakeCase = require('./snakeCase')
describe('snakeCase', () => {
test('works with simple lowercased phrases', () => {
expect(snakeCase('hello world')).toEqual('hello_world');
describe("snakeCase", function () {
it("works with simple lowercased phrases", function () {
expect(snakeCase("hello world")).toEqual("hello_world");
});
test.skip('works with Caps and punctuation', () => {
expect(snakeCase('Hello, World???')).toEqual('hello_world');
xit("works with Caps and punctuation", function () {
expect(snakeCase("Hello, World???")).toEqual("hello_world");
});
test.skip('works with longer phrases', () => {
expect(snakeCase('This is the song that never ends....')).toEqual('this_is_the_song_that_never_ends');
xit("works with longer phrases", function () {
expect(snakeCase("This is the song that never ends....")).toEqual(
"this_is_the_song_that_never_ends"
);
});
test.skip('works with camel case', () => {
expect(snakeCase('snakeCase')).toEqual('snake_case');
xit("works with camel case", function () {
expect(snakeCase("snakeCase")).toEqual("snake_case");
});
test.skip('works with kebab case', () => {
expect(snakeCase('snake-case')).toEqual('snake_case');
xit("works with kebab case", function () {
expect(snakeCase("snake-case")).toEqual("snake_case");
});
test.skip('works with WTF case', () => {
expect(snakeCase('SnAkE..CaSe..Is..AwEsOmE')).toEqual('snake_case_is_awesome');
xit("works with WTF case", function () {
expect(snakeCase("SnAkE..CaSe..Is..AwEsOmE")).toEqual(
"snake_case_is_awesome"
);
});
});