Skip to content

Commit 6bd31da

Browse files
authored
feat(pac): add file for tests (#562)
2 parents bae0c4a + 0952321 commit 6bd31da

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)