We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ce8213 commit 934da81Copy full SHA for 934da81
test/integration/auth-proxy-test.js
@@ -3,7 +3,7 @@ const path = require('path')
3
const nock = require('nock')
4
const request = require('supertest')
5
const { expect } = require('chai')
6
-const rmDir = require('../utils').rmDir
+const rm = require('../utils').rm
7
8
const USER = 'https://ruben.verborgh.org/profile/#me'
9
@@ -32,7 +32,8 @@ describe('Auth Proxy', () => {
32
// Release back-end server
33
nock.cleanAll()
34
// Remove created index files
35
- rmDir()
+ rm('index.html')
36
+ rm('index.html.acl')
37
})
38
39
describe('responding to /server/a', () => {
0 commit comments