()
| 844 | } |
| 845 | |
| 846 | function pullInLive() { |
| 847 | describe('pull to live', function() { |
| 848 | it('should pull', function(callback) { |
| 849 | const execOptions = { |
| 850 | cwd: courseLiveDir, |
| 851 | env: process.env, |
| 852 | }; |
| 853 | exec('git pull', execOptions, (err) => { |
| 854 | if (ERR(err, callback)) return; |
| 855 | callback(null); |
| 856 | }); |
| 857 | }); |
| 858 | }); |
| 859 | } |
| 860 | |
| 861 | function waitForJobSequence(locals, expectedResult) { |
| 862 | describe('The job sequence', function() { |