Skip to content

Commit ce2dddd

Browse files
committed
Rename flexion-notify to flexion-messaging across the site
The flexion-notify repo has been renamed to flexion-messaging and made public. Update all references: content, overrides, examples, and tests.
1 parent c02203d commit ce2dddd

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

content/featured/messaging-lab.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Messaging Lab
33
tagline: Text messaging services to deliver critical updates to the people you serve.
44
order: 2
55
links:
6-
- label: flexion/flexion-notify
7-
url: https://github.com/flexion/flexion-notify
6+
- label: flexion/flexion-messaging
7+
url: https://github.com/flexion/flexion-messaging
88
kind: repo
99
---

data/overrides.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ forms-lab:
1313
category: product
1414
featured: true
1515

16-
flexion-notify:
16+
flexion-messaging:
1717
tier: active
1818
category: product
1919
featured: true

src/design/components/lab-card/examples.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const singleLink: FeaturedLab = {
1818
tagline: 'Text messaging services to deliver critical updates to the people you serve.',
1919
order: 2,
2020
links: [
21-
{ label: 'flexion/flexion-notify', url: 'https://github.com/flexion/flexion-notify', kind: 'repo' },
21+
{ label: 'flexion/flexion-messaging', url: 'https://github.com/flexion/flexion-messaging', kind: 'repo' },
2222
],
2323
}
2424

tests/build/featured.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ describe('loadFeatured', () => {
3434
const messaging = labs.find((l) => l.title === 'Messaging Lab')!
3535
expect(messaging.links).toEqual([
3636
{
37-
label: 'flexion/flexion-notify',
38-
url: 'https://github.com/flexion/flexion-notify',
37+
label: 'flexion/flexion-messaging',
38+
url: 'https://github.com/flexion/flexion-messaging',
3939
kind: 'repo',
4040
},
4141
])

tests/views/components.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ describe('LabCard', () => {
7474
tagline: 'Text messaging services.',
7575
order: 2,
7676
links: [
77-
{ label: 'flexion/flexion-notify', url: 'https://github.com/flexion/flexion-notify', kind: 'repo' },
77+
{ label: 'flexion/flexion-messaging', url: 'https://github.com/flexion/flexion-messaging', kind: 'repo' },
7878
],
7979
}
8080

@@ -145,7 +145,7 @@ describe('LabCard', () => {
145145
const html = await renderToHtml(<LabCard lab={singleLink} />)
146146
expect(html.match(/class="lab-card__column"/g)?.length).toBe(1)
147147
expect(html).toContain('>Repository<')
148-
expect(html).toContain('href="https://github.com/flexion/flexion-notify"')
148+
expect(html).toContain('href="https://github.com/flexion/flexion-messaging"')
149149
})
150150

151151
test('case-study kind renders its own column and heading', async () => {

tests/views/home.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const featured: FeaturedLab[] = [
3030
tagline: 'Text messaging services to deliver critical updates to the people you serve.',
3131
order: 2,
3232
links: [
33-
{ label: 'flexion/flexion-notify', url: 'https://github.com/flexion/flexion-notify', kind: 'repo' },
33+
{ label: 'flexion/flexion-messaging', url: 'https://github.com/flexion/flexion-messaging', kind: 'repo' },
3434
],
3535
},
3636
{
@@ -72,7 +72,7 @@ describe('Home', () => {
7272
test('renders each labs links inside its card', async () => {
7373
const html = await renderToHtml(<Home hero={hero} featured={featured} config={config} />)
7474
expect(html).toContain('href="https://github.com/flexion/forms"')
75-
expect(html).toContain('href="https://github.com/flexion/flexion-notify"')
75+
expect(html).toContain('href="https://github.com/flexion/flexion-messaging"')
7676
expect(html).toContain('href="https://github.com/flexion/document-extractor"')
7777
})
7878

0 commit comments

Comments
 (0)