Skip to content

Commit 934da81

Browse files
committed
Should not remove dirs in test...
1 parent 7ce8213 commit 934da81

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/integration/auth-proxy-test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const path = require('path')
33
const nock = require('nock')
44
const request = require('supertest')
55
const { expect } = require('chai')
6-
const rmDir = require('../utils').rmDir
6+
const rm = require('../utils').rm
77

88
const USER = 'https://ruben.verborgh.org/profile/#me'
99

@@ -32,7 +32,8 @@ describe('Auth Proxy', () => {
3232
// Release back-end server
3333
nock.cleanAll()
3434
// Remove created index files
35-
rmDir()
35+
rm('index.html')
36+
rm('index.html.acl')
3637
})
3738

3839
describe('responding to /server/a', () => {

0 commit comments

Comments
 (0)