Skip to content

Commit 54bf574

Browse files
committed
deleted ie and old edge tests from default-download
1 parent ab03ddb commit 54bf574

File tree

1 file changed

+0
-67
lines changed

1 file changed

+0
-67
lines changed

test/default-downloads-test.js

Lines changed: 0 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -56,73 +56,6 @@ describe('default-downloads', function () {
5656
});
5757
});
5858

59-
if (process.version.startsWith('v14.')) {
60-
describe('ie', () => {
61-
before(() => {
62-
Object.defineProperty(process, 'platform', {
63-
value: 'win32',
64-
});
65-
});
66-
67-
it('ia32 download exists', async () => {
68-
opts = merge(opts, {
69-
drivers: {
70-
ie: {
71-
arch: 'ia32',
72-
},
73-
},
74-
});
75-
76-
computedUrls = await computeDownloadUrls(opts);
77-
78-
assert(computedUrls.ie.indexOf('Win32') > 0);
79-
await doesDownloadExist(computedUrls.ie);
80-
});
81-
82-
it('x64 download exists', async () => {
83-
opts = merge(opts, {
84-
drivers: {
85-
ie: {
86-
arch: 'x64',
87-
},
88-
},
89-
});
90-
91-
computedUrls = await computeDownloadUrls(opts);
92-
93-
assert(computedUrls.ie.indexOf('x64') > 0);
94-
await doesDownloadExist(computedUrls.ie);
95-
});
96-
});
97-
98-
describe('edge', () => {
99-
before(() => {
100-
Object.defineProperty(process, 'platform', {
101-
value: 'win32',
102-
});
103-
});
104-
105-
const releases = require('../lib/microsoft-edge-releases');
106-
107-
Object.keys(releases).forEach((version) => {
108-
it('version `' + version + '` download exists', async () => {
109-
opts = merge(opts, {
110-
drivers: {
111-
edge: {
112-
version: version,
113-
},
114-
},
115-
});
116-
117-
computedUrls = await computeDownloadUrls(opts);
118-
119-
assert.strictEqual(computedUrls.edge, releases[version].url);
120-
await doesDownloadExist(computedUrls.edge);
121-
});
122-
});
123-
});
124-
}
125-
12659
describe('chrome', () => {
12760
describe('linux', () => {
12861
before(() => {

0 commit comments

Comments
 (0)