@@ -1827,7 +1827,7 @@ describe("short-term promotion", () => {
|
1827 | 1827 | path: "memory/2026-04-03.md", |
1828 | 1828 | snippet: "Move backups to S3 Glacier and sync QMD router notes.", |
1829 | 1829 | }), |
1830 | | -).toEqual(expect.arrayContaining(["glacier", "router", "backups"])); |
| 1830 | +).toStrictEqual(["backup", "backups", "glacier", "qmd", "router", "sync"]); |
1831 | 1831 | }); |
1832 | 1832 | |
1833 | 1833 | it("extracts multilingual concept tags across latin and cjk snippets", () => { |
@@ -1836,12 +1836,21 @@ describe("short-term promotion", () => {
|
1836 | 1836 | path: "memory/2026-04-03.md", |
1837 | 1837 | snippet: "Configuración du routeur et sauvegarde Glacier.", |
1838 | 1838 | }), |
1839 | | -).toEqual(expect.arrayContaining(["configuración", "routeur", "sauvegarde", "glacier"])); |
| 1839 | +).toStrictEqual(["glacier", "sauvegarde", "routeur", "configuración"]); |
1840 | 1840 | expect( |
1841 | 1841 | __testing.deriveConceptTags({ |
1842 | 1842 | path: "memory/2026-04-03.md", |
1843 | 1843 | snippet: "障害対応ルーター設定とバックアップ確認。路由器备份与网关同步。", |
1844 | 1844 | }), |
1845 | | -).toEqual(expect.arrayContaining(["障害対応", "ルーター", "バックアップ", "路由器", "备份"])); |
| 1845 | +).toStrictEqual([ |
| 1846 | +"バックアップ", |
| 1847 | +"ルーター", |
| 1848 | +"障害対応", |
| 1849 | +"路由器", |
| 1850 | +"备份", |
| 1851 | +"网关", |
| 1852 | +"障害", |
| 1853 | +"対応", |
| 1854 | +]); |
1846 | 1855 | }); |
1847 | 1856 | }); |