Skip to content

Commit 348cc04

Browse files
authored
Merge pull request #7 from peterhil/test-index-from-map
Test index from map
2 parents 066f4af + aebdc35 commit 348cc04

File tree

2 files changed

+51
-17
lines changed

2 files changed

+51
-17
lines changed

.github/workflows/docs.yml

+10-17
Original file line numberDiff line numberDiff line change
@@ -12,33 +12,26 @@ jobs:
1212
steps:
1313
- name: Checkout repo
1414
uses: actions/checkout@v4
15+
with:
16+
ref: main
17+
18+
- name: Setup Pnpm
19+
uses: pnpm/action-setup@v4
20+
with:
21+
version: 9.4.x
1522

1623
- name: Setup Node
1724
uses: actions/setup-node@v4
1825
with:
1926
node-version: 20
2027
registry-url: https://registry.npmjs.org
21-
# cache: pnpm
22-
23-
- name: Cache pnpm modules
24-
uses: actions/cache@v4
25-
with:
26-
path: ~/.pnpm-store
27-
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
28-
restore-keys: |
29-
${{ runner.os }}-
28+
cache: pnpm
3029

3130
- name: Pnpm install
32-
uses: pnpm/action-setup@v4
33-
with:
34-
version: 9.4.x
35-
run_install: |
36-
- recursive: true
37-
args: [--frozen-lockfile, --strict-peer-dependencies]
38-
- args: [--global, typedoc, typescript]
31+
run: pnpm install --strict-peer-dependencies
3932

4033
- name: Generate documentation
41-
run: pnpm run doc
34+
run: pnpm doc
4235

4336
- name: Publish Docs
4437
run: |

src/search.test.ts

+41
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,47 @@ tap.test('Index.from', assert => {
6363
assert.end()
6464
})
6565

66+
tap.test('Index.from an object', assert => {
67+
const obj = {
68+
a: 'Alpha',
69+
b: 'Beta',
70+
g: 'Gamma',
71+
d: 'Delta',
72+
}
73+
const index = Index.from(obj, 2, '•')
74+
75+
assert.same(
76+
index.all(),
77+
{
78+
'al': {'a': [0]},
79+
'lp': {'a': [1]},
80+
'ph': {'a': [2]},
81+
'ha': {'a': [3]},
82+
'a•': {
83+
'a': [4],
84+
'b': [3],
85+
'g': [4],
86+
'd': [4],
87+
},
88+
'be': {'b': [0]},
89+
'et': {'b': [1]},
90+
'ta': {
91+
'b': [2],
92+
'd': [3],
93+
},
94+
'ga': {'g': [0]},
95+
'am': {'g': [1]},
96+
'mm': {'g': [2]},
97+
'ma': {'g': [3]},
98+
'de': {'d': [0]},
99+
'el': {'d': [1]},
100+
'lt': {'d': [2]},
101+
},
102+
)
103+
assert.same(index.search('ta'), ['b', 'd'])
104+
assert.end()
105+
})
106+
66107
tap.test('index', assert => {
67108
const index = new Index(3, '•')
68109
index.add('Alpha', 'a')

0 commit comments

Comments
 (0)