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 24313d8 commit eaefd59Copy full SHA for eaefd59
.circleci/config.yml
@@ -50,7 +50,7 @@ workflows:
50
build-and-deploy:
51
jobs:
52
- lint
53
- - build
+ - build:
54
requires:
55
56
- test:
tests/tests.ts
@@ -8,7 +8,7 @@ describe('String.IsNullOrWhitespace', () => {
8
9
it('should return true on null string', () => {
10
const teststring: string | null = null;
11
- let result = String.IsNullOrWhiteSpace(teststring);
+ let result = String.IsNullOrWhiteSpace(teststring!);
12
expect(result).to.equal(true);
13
result = String.isNullOrWhiteSpace(teststring);
14
0 commit comments