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
| // Component that launches the modal test file | |
| describe('CheckListContainerComponent', () => { | |
| ... | |
| beforeEach(async () => { | |
| await TestBed.configureTestingModule({ | |
| imports: [ | |
| NbThemeModule.forRoot(), | |
| NbDialogModule.forRoot(), |
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
| <script src="https://code.highcharts.com/highcharts.js"></script> | |
| <script src="https://code.highcharts.com/modules/funnel.js"></script> | |
| <div id="bar-captacion" style="min-width: 310px; height: 400px; margin: 0 auto"></div> | |
| <div id="funner-captacion" style="min-width: 310px; height: 400px; margin: 0 auto"></div> |
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
| class PollsTest(LiveServerTestCase): | |
| def setUp(self): | |
| self.browser = webdriver.Firefox() | |
| self.browser.implicitly_wait(3) | |
| def tearDown(self): | |
| self.browser.quit() | |
| def test_can_create_new_poll_via_admin_site(self): |
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
| <properties> | |
| <!-- Generic properties --> | |
| <java.version>1.6</java.version> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
| <!-- Spring --> | |
| <spring-framework.version>4.0.2.RELEASE</spring-framework.version> |