Skip to content

Commit 2a35ef9

Browse files
committed
wip skip css installation tests
1 parent e11eed4 commit 2a35ef9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/e2e/e2e_workflow.spec.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ describe('Basic end-to-end Workflow', function () {
201201
});
202202
});
203203

204-
it('Installs sass support successfully', function() {
204+
it.skip('Installs sass support successfully', function() {
205205
this.timeout(420000);
206206

207207
sh.exec('npm install node-sass', { silent: true });
@@ -225,18 +225,18 @@ describe('Basic end-to-end Workflow', function () {
225225
expect(contents).to.include('.outer .inner');
226226

227227
sh.rm('-f', destCss);
228-
// process.chdir('src');
228+
process.chdir('src');
229229
sh.exec('ng build');
230230
expect(existsSync(destCss)).to.be.equal(true);
231231
contents = fs.readFileSync(destCss, 'utf8');
232232
expect(contents).to.include('.outer .inner');
233233

234-
// process.chdir('..');
234+
process.chdir('..');
235235
sh.exec('npm uninstall node-sass', { silent: true });
236236
});
237237
});
238238

239-
it('Installs less support successfully', function() {
239+
it.skip('Installs less support successfully', function() {
240240
this.timeout(420000);
241241

242242
sh.exec('npm install less', { silent: true });
@@ -260,18 +260,18 @@ describe('Basic end-to-end Workflow', function () {
260260
expect(contents).to.include('.outer .inner');
261261

262262
sh.rm('-f', destCss);
263-
// process.chdir('src');
263+
process.chdir('src');
264264
sh.exec('ng build');
265265
expect(existsSync(destCss)).to.be.equal(true);
266266
contents = fs.readFileSync(destCss, 'utf8');
267267
expect(contents).to.include('.outer .inner');
268268

269-
// process.chdir('..');
269+
process.chdir('..');
270270
sh.exec('npm uninstall less', { silent: true });
271271
});
272272
});
273273

274-
it('Installs stylus support successfully', function() {
274+
it.skip('Installs stylus support successfully', function() {
275275
this.timeout(420000);
276276

277277
sh.exec('npm install stylus', { silent: true });
@@ -294,13 +294,13 @@ describe('Basic end-to-end Workflow', function () {
294294
expect(contents).to.include('.outer .inner');
295295

296296
sh.rm('-f', destCss);
297-
// process.chdir('src');
297+
process.chdir('src');
298298
sh.exec('ng build');
299299
expect(existsSync(destCss)).to.be.equal(true);
300300
contents = fs.readFileSync(destCss, 'utf8');
301301
expect(contents).to.include('.outer .inner');
302302

303-
// process.chdir('..');
303+
process.chdir('..');
304304
sh.exec('npm uninstall stylus', { silent: true });
305305
});
306306
});

0 commit comments

Comments
 (0)