Skip to content

Commit 0952321

Browse files
committed
feat(pac): add file for tests
1 parent bae0c4a commit 0952321

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/fixtures/pac/proxy.pac

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Sample PAC File for QDT Test
2+
3+
function FindProxyForURL(url, host)
4+
{
5+
if (shExpMatch(host,"*.no-proxy.fr"))
6+
return "DIRECT";
7+
8+
else return "PROXY myproxy:8080";
9+
}
10+
11+

0 commit comments

Comments
 (0)