File: 01-disable-coffe-tests.patch

package info (click to toggle)
node-liftoff 3.1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,576 kB
  • sloc: javascript: 2,080; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 1,469 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- a/test/index.js
+++ b/test/index.js
@@ -271,7 +271,7 @@
 
   describe('requireLocal', function() {
 
-    it('should attempt pre-loading local modules if they are requested', function(done) {
+    it.skip('should attempt pre-loading local modules if they are requested', function(done) {
       var app = new Liftoff({ name: 'test' });
       var logs = [];
       app.on('require', function(moduleName, module) {
@@ -291,7 +291,7 @@
       });
     });
 
-    it('should attempt pre-loading a local module if it is requested', function(done) {
+    it.skip('should attempt pre-loading a local module if it is requested', function(done) {
       var app = new Liftoff({ name: 'test' });
       var logs = [];
       app.on('require', function(moduleName, module) {
@@ -311,7 +311,7 @@
       });
     });
 
-    it('should attempt pre-loading local modules but fail', function(done) {
+    it.skip('should attempt pre-loading local modules but fail', function(done) {
       var app = new Liftoff({ name: 'test' });
       var logs = [];
       app.on('require', function(/* moduleName, module */) {
@@ -331,7 +331,7 @@
       });
     });
 
-    it('should pre-load a local module only once even if be respawned', function(done) {
+    it.skip('should pre-load a local module only once even if be respawned', function(done) {
       var fixturesDir = path.resolve(__dirname, 'fixtures');
 
       exec('cd ' + fixturesDir + ' && node respawn_and_require.js', cb);