Skip to content

Commit d82693e

Browse files
committed
add sample data
1 parent baa8f1b commit d82693e

File tree

6 files changed

+10798
-4
lines changed

6 files changed

+10798
-4
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ testem.log
4242
Thumbs.db
4343

4444
# Too big for now
45-
/src/assets/test-data/big-sample.xml
4645
/src/assets/test-data/bigger-sample.xml
4746

4847
# Reconsider this

src/app/services/data.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import * as xml2js from 'xml2js';
88
})
99

1010
export class DataService {
11-
currentURL: string = 'https://smstestbed.nist.gov/vds/current';
12-
sampleURL: string = 'https://smstestbed.nist.gov/vds/sample';
13-
countURL: string = 'https://smstestbed.nist.gov/vds/sample?count=2000';
11+
currentURL: string = '/assets/test-data/current.xml';
12+
sampleURL: string = '/assets/test-data/sample.xml';
13+
countURL: string = '/assets/test-data/big-sample.xml'; // count=10000
1414

1515
constructor(private httpClient: HttpClient) {
1616

src/assets/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)