spec: Fix failing tests on Windows
authorCheng Zhao <zcbenz@gmail.com>
Thu, 18 Feb 2016 03:39:35 +0000 (11:39 +0800)
committerCheng Zhao <zcbenz@gmail.com>
Thu, 18 Feb 2016 03:39:35 +0000 (11:39 +0800)
spec/api-debugger-spec.js
vendor/node

index 714d5fd..56b642e 100644 (file)
@@ -95,7 +95,9 @@ describe('debugger module', function() {
     });
 
     it('fires message event', function(done) {
-      var url = 'file://' + path.join(fixtures, 'pages', 'a.html');
+      var url = process.platform != 'win32' ?
+        'file://' + path.join(fixtures, 'pages', 'a.html') :
+        'file:///' + path.join(fixtures, 'pages', 'a.html').replace(/\\/g, '/');
       w.webContents.loadURL(url);
       try {
         w.webContents.debugger.attach();
index a130651..a507a3c 160000 (submodule)
@@ -1 +1 @@
-Subproject commit a130651f868f5ad23cb366abacea02f9ed50b769
+Subproject commit a507a3c3816d6ac085ed46250c489a3d76ab8b3c