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 { mount } from 'enzyme'; |
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
| it('should render the button correctly', () => { | |
| const wrapper = mount(<App />); | |
| const buttonText = 'Press'; | |
| expect(wrapper.contains(buttonText)).toEqual(true); | |
| }); |
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 Button from './components/Button'; |
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
| return ( | |
| <div className="App"> | |
| <header className="App-header"> | |
| <img src={logo} className="App-logo" alt="logo" /> | |
| <h1 className="App-title">Welcome to React</h1> | |
| </header> | |
| <p className="App-intro"> | |
| To get started, edit <code>src/App.js</code> and save to reload. | |
| </p> | |
| <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
| trigger: | |
| - master | |
| pool: | |
| name: Hosted Ubuntu 1604 | |
| steps: | |
| - bash: npm install | |
| displayName: NPM Install Dependencies | |
| - bash: npm run build | |
| displayName: Build Angular application |
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
| trigger: | |
| - master | |
| pool: | |
| name: Hosted Ubuntu 1604 | |
| steps: | |
| - task: RestoreAndSaveCache@1 | |
| inputs: | |
| keyfile: '**/package-lock.json, !**/node_modules/**/package-lock.json, !**/.*/**/package-lock.json' | |
| targetfolder: '**/node_modules, !**/node_modules/**/node_modules' |
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
| condition: ne(variables['CacheRestored'], 'true') |
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
| trigger: | |
| - master | |
| pool: | |
| name: Hosted Ubuntu 1604 | |
| steps: | |
| - bash: npm install | |
| displayName: NPM Install Dependencies | |
| - bash: npm run lint | |
| displayName: Run Angular linting |
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
| trigger: | |
| - master | |
| jobs: | |
| - job: Linting | |
| pool: | |
| name: Hosted Ubuntu 1604 | |
| steps: | |
| - bash: npm install | |
| displayName: NPM Install Dependencies |
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
| trigger: | |
| - master | |
| jobs: | |
| - job: Linting | |
| pool: | |
| name: Hosted Ubuntu 1604 | |
| steps: | |
| - bash: npm install | |
| displayName: NPM Install Dependencies |