@malloydata/malloy-tests 0.0.233 → 0.0.234-dev250202180101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/src/core/tags.spec.ts +2 -1
package/package.json
CHANGED
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@jest/globals": "^29.4.3",
|
|
24
|
-
"@malloydata/db-bigquery": "^0.0.
|
|
25
|
-
"@malloydata/db-duckdb": "^0.0.
|
|
26
|
-
"@malloydata/db-postgres": "^0.0.
|
|
27
|
-
"@malloydata/db-snowflake": "^0.0.
|
|
28
|
-
"@malloydata/db-trino": "^0.0.
|
|
29
|
-
"@malloydata/malloy": "^0.0.
|
|
30
|
-
"@malloydata/render": "^0.0.
|
|
24
|
+
"@malloydata/db-bigquery": "^0.0.234-dev250202180101",
|
|
25
|
+
"@malloydata/db-duckdb": "^0.0.234-dev250202180101",
|
|
26
|
+
"@malloydata/db-postgres": "^0.0.234-dev250202180101",
|
|
27
|
+
"@malloydata/db-snowflake": "^0.0.234-dev250202180101",
|
|
28
|
+
"@malloydata/db-trino": "^0.0.234-dev250202180101",
|
|
29
|
+
"@malloydata/malloy": "^0.0.234-dev250202180101",
|
|
30
|
+
"@malloydata/render": "^0.0.234-dev250202180101",
|
|
31
31
|
"events": "^3.3.0",
|
|
32
32
|
"jsdom": "^22.1.0",
|
|
33
33
|
"luxon": "^2.4.0",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"@types/jsdom": "^21.1.1",
|
|
38
38
|
"@types/luxon": "^2.4.0"
|
|
39
39
|
},
|
|
40
|
-
"version": "0.0.
|
|
40
|
+
"version": "0.0.234-dev250202180101"
|
|
41
41
|
}
|
package/src/core/tags.spec.ts
CHANGED
|
@@ -155,12 +155,13 @@ describe('tagParse to Tag', () => {
|
|
|
155
155
|
},
|
|
156
156
|
},
|
|
157
157
|
],
|
|
158
|
+
['can remove.properties -...', {}],
|
|
158
159
|
];
|
|
159
160
|
test.each(tagTests)('tag %s', (expression: string, expected: TagDict) => {
|
|
160
161
|
expect(expression).tagsAre(expected);
|
|
161
162
|
});
|
|
162
163
|
test.skip('unskip to debug just one of the expressions', () => {
|
|
163
|
-
const x: TagTestTuple = ['
|
|
164
|
+
const x: TagTestTuple = ['word -...', {}];
|
|
164
165
|
expect(x[0]).tagsAre(x[1]);
|
|
165
166
|
});
|
|
166
167
|
test('inherits can be over-ridden', () => {
|