Skip to content

Commit

Permalink
Added unit testing (cont')
Browse files Browse the repository at this point in the history
  • Loading branch information
Anantachai Saothong (Manta) committed Apr 8, 2017
1 parent 44ef359 commit 1a1f513
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"insertParenthesisAroundIfCondition": false,
"newLineChar": "\r\n"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
if x==1
display none
else if x==2
display block
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
if x == 1 {
display: none;
} else if x == 2 {
display: block;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"insertParenthesisAroundIfCondition": true,
"newLineChar": "\r\n"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
if x==1
display none
else if x==2
display block
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
if (x == 1) {
display: none;
} else if (x == 2) {
display: block;
}

0 comments on commit 1a1f513

Please sign in to comment.