Skip to content

Commit 9214f20

Browse files
committed
restore initial test state
1 parent 0b21834 commit 9214f20

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

07_tempConversion/tempConversion.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ describe('convertToCelsius', () => {
44
test('works', () => {
55
expect(convertToCelsius(32)).toEqual(0);
66
});
7-
test('rounds to 1 decimal', () => {
7+
test.skip('rounds to 1 decimal', () => {
88
expect(convertToCelsius(100)).toEqual(37.8);
99
});
10-
test('works with negatives', () => {
10+
test.skip('works with negatives', () => {
1111
expect(convertToCelsius(-100)).toEqual(-73.3);
1212
});
1313
});
1414

1515
describe('convertToFahrenheit', () => {
16-
test('works', () => {
16+
test.skip('works', () => {
1717
expect(convertToFahrenheit(0)).toEqual(32);
1818
});
19-
test('rounds to 1 decimal', () => {
19+
test.skip('rounds to 1 decimal', () => {
2020
expect(convertToFahrenheit(73.2)).toEqual(163.8);
2121
});
22-
test('works with negatives', () => {
22+
test.skip('works with negatives', () => {
2323
expect(convertToFahrenheit(-10)).toEqual(14);
2424
});
2525
});

0 commit comments

Comments
 (0)