Last active
April 11, 2019 19:55
-
-
Save adrian-afergon/01303dcf2eb4f34b4011c0b06448a1d3 to your computer and use it in GitHub Desktop.
Renaming the tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { shallow } from 'enzyme'; | |
import * as React from 'react'; | |
import { ExerciseDetail } from './'; | |
describe('ExerciseDetail', () => { | |
it('should display the warning when it\'s present in the exercise', () => { | |
/* ... */ | |
}); | |
it('should not display the warning when it\'s not set in the exercise', () => { | |
/* ... */ | |
}); | |
it('should render a list multiple tags', () => { | |
/* ... */ | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment