Skip to content

Commit 0ed741c

Browse files
authored
Merge pull request #62 from IBM/filters
feat(CIS-filters): added filters sdk
2 parents 3d36a02 + bb123b4 commit 0ed741c

34 files changed

+2284
-267
lines changed

cis/filtersv1/v1.ts

Lines changed: 777 additions & 0 deletions
Large diffs are not rendered by default.

dns.env.enc

0 Bytes
Binary file not shown.

test/integration/cis/caching-api.v1.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let browserCacheTtl;
3838
let developmentMode;
3939
let sortQueryStrForCache;
4040

41-
describe.skip('DNSRecordsApisV1', () => {
41+
describe('DNSRecordsApisV1', () => {
4242
jest.setTimeout(timeout);
4343

4444
// Initialize the service client.

test/integration/cis/cis-ip-api.v1.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const describe = authHelper.prepareTests(configFile);
3232
// config properties, rather than let the SDK do it for us.
3333
const config = authHelper.loadConfig();
3434

35-
describe.skip('CisIpApiV1', () => {
35+
describe('CisIpApiV1', () => {
3636
jest.setTimeout(timeout);
3737

3838
// Initialize the service client.

test/integration/cis/custom-pages.v1.test.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ let customPagesV1;
3636
let customPage;
3737
let customPage1;
3838

39-
describe.skip('CustomPagesV1', () => {
39+
describe('CustomPagesV1', () => {
4040
jest.setTimeout(timeout);
4141

4242
// Initialize the service client.
@@ -107,7 +107,7 @@ describe.skip('CustomPagesV1', () => {
107107
done();
108108
} catch (err) {
109109
// eslint-disable-next-line no-console
110-
console.log('Warning --- ' + err);
110+
// console.log('Warning --- ' + err);
111111
done();
112112
}
113113
});
@@ -143,7 +143,7 @@ describe.skip('CustomPagesV1', () => {
143143
done();
144144
} catch (err) {
145145
// eslint-disable-next-line no-console
146-
console.log('Warning --- ' + err);
146+
// console.log('Warning --- ' + err);
147147
done();
148148
}
149149
});
@@ -177,7 +177,7 @@ describe.skip('CustomPagesV1', () => {
177177
done();
178178
} catch (err) {
179179
// eslint-disable-next-line no-console
180-
console.log('Warning --- ' + err);
180+
// console.log('Warning --- ' + err);
181181
done();
182182
}
183183
});
@@ -213,7 +213,7 @@ describe.skip('CustomPagesV1', () => {
213213
done();
214214
} catch (err) {
215215
// eslint-disable-next-line no-console
216-
console.log('Warning --- ' + err);
216+
// console.log('Warning --- ' + err);
217217
done();
218218
}
219219
});
@@ -251,7 +251,7 @@ describe.skip('CustomPagesV1', () => {
251251
done();
252252
} catch (err) {
253253
// eslint-disable-next-line no-console
254-
console.log('Warning --- ' + err);
254+
// console.log('Warning --- ' + err);
255255
done();
256256
}
257257
});
@@ -285,7 +285,7 @@ describe.skip('CustomPagesV1', () => {
285285
done();
286286
} catch (err) {
287287
// eslint-disable-next-line no-console
288-
console.log('Warning --- ' + err);
288+
// console.log('Warning --- ' + err);
289289
done();
290290
}
291291
});
@@ -321,7 +321,7 @@ describe.skip('CustomPagesV1', () => {
321321
done();
322322
} catch (err) {
323323
// eslint-disable-next-line no-console
324-
console.log('Warning --- ' + err);
324+
// console.log('Warning --- ' + err);
325325
done();
326326
}
327327
});

test/integration/cis/dns-records-bulk.v1.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const describe = authHelper.prepareTests(configFile);
3333
// config properties, rather than let the SDK do it for us.
3434
const config = authHelper.loadConfig();
3535

36-
describe.skip('DNSRecordsApisV1', () => {
36+
describe('DNSRecordsApisV1', () => {
3737
jest.setTimeout(timeout);
3838

3939
// Initialize the service client.

test/integration/cis/dns-records.v1.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const config = authHelper.loadConfig();
3434

3535
let DNS_RECORD_ID;
3636

37-
describe.skip('DNSRecordsApisV1', () => {
37+
describe('DNSRecordsApisV1', () => {
3838
jest.setTimeout(timeout);
3939

4040
// Initialize the service client.

test/integration/cis/edge-functions-api.v1.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let edgeFunctionsApiV1;
3838
let edgeFunctionAction;
3939
let edgeFunctionTrigger;
4040

41-
describe.skip('EdgeFunctionsApiV1', () => {
41+
describe('EdgeFunctionsApiV1', () => {
4242
jest.setTimeout(timeout);
4343

4444
// Initialize the service client.

0 commit comments

Comments
 (0)