refact: removed non core files

This commit is contained in:
ysandler 2020-06-17 00:13:59 -05:00 committed by Joshua Shoemaker
parent 1055b8b9dc
commit 921154f1d2
6 changed files with 1 additions and 553749 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
node_modules
/tests/testData.js

View File

@ -1,37 +0,0 @@
import Table from '../core/entities/Table.js'
import Node from '../core/entities/Node.js'
import FilterNode from '../core/entities/nodes/FilterNode.js'
import testData from './testData.js'
const tableInput = {
id: 'XYZABC',
label: 'SC Total Receipts',
rows: testData
}
let receipts = {}
try {
receipts = new Table(tableInput)
} catch (err) {
console.log(err)
}
let filterNode = {}
try {
filterNode = new FilterNode({
id: 'ERTHJNHBGFDS',
label: 'Filter Node',
tables: receipts,
filterParams: {
siteName: 'Seewee Road DMS',
fieldMonitorUserCertificationNumber: '9YW6ZAY'
},
type: 'EQUAL'
})
console.log(filterNode.tables[0].getRows().length)
console.log(filterNode.export().length)
} catch (err) {
console.log(err)
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.