jdi-testing / jdn-ai

JDN – is the Chrome plugin for UI test automation. It helps Software Test Automation Engineer to create Page Objects for the test automation framework and start test development fast
MIT License
9 stars 3 forks source link

Switch casings styles #1538

Open SemyonKuznetsov opened 11 months ago

SemyonKuznetsov commented 11 months ago

Description

AS A user I WANT TO switch casing styles SO THAT will make the code visually familiar

Now the camel case is implemented.

Acceptance criteria

Artefacts

Design:

Comments

What's the Difference Between Casings? https://www.freecodecamp.org/news/snake-case-vs-camel-case-vs-pascal-case-vs-kebab-case-whats-the-difference/

snake case:

number_of_donuts = 34
fave_phrase = "Hello World"

upper case snake case:

NUMBER_OF_DONUTS = 34
FAVE_PHRASE = "Hello World"

camel case:

numberOfDonuts = 34
favePhrase = "Hello World"

pascal case:

NumberOfDonuts = 34
FavePhrase = "Hello World"

image

SemyonKuznetsov commented 5 months ago

дубликат от https://github.com/jdi-testing/jdn-ai/issues/1562